Commit 1881ff2841b36f87fce2c2ea15af8ffe521d4ede
1 parent
d1365f4f
no message
Showing
6 changed files
with
206 additions
and
243 deletions
Example/Products/CNLivePlayer.framework/Headers/CNLivePlayerDBTool.h
0 → 100644
| 1 | +// | |
| 2 | +// CNLivePlayerDBTool.h | |
| 3 | +// CNLivePlayer_Example | |
| 4 | +// | |
| 5 | +// Created by CNLive-zxw on 2019/8/19. | |
| 6 | +// Copyright © 2019 153993236@qq.com. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +/** | |
| 10 | + * 数据库管理类 | |
| 11 | + */ | |
| 12 | + | |
| 13 | +#import <Foundation/Foundation.h> | |
| 14 | + | |
| 15 | +NS_ASSUME_NONNULL_BEGIN | |
| 16 | +@class FMDatabase; | |
| 17 | +@class CNLivePlayerModel; | |
| 18 | + | |
| 19 | +typedef void(^DBReslutCallback)(int result,FMDatabase *db); | |
| 20 | + | |
| 21 | +@interface CNLivePlayerDBTool : NSObject | |
| 22 | + | |
| 23 | ++ (instancetype)shared; | |
| 24 | + | |
| 25 | +#pragma mark - 根据需要自定义操作 | |
| 26 | +/** | |
| 27 | + * 创建具体需要的数据库表 | |
| 28 | + * | |
| 29 | + */ | |
| 30 | +- (void)createTable; | |
| 31 | + | |
| 32 | +/** | |
| 33 | + * 判断数据是否存在表中 | |
| 34 | + * | |
| 35 | + * @param contentId 数据模型id | |
| 36 | + * | |
| 37 | + * @return 返回是否存在 | |
| 38 | + * | |
| 39 | + */ | |
| 40 | +- (BOOL)existInTable:(NSString *)contentId; | |
| 41 | + | |
| 42 | +/** | |
| 43 | + * 查找数据是否存在表中 | |
| 44 | + * | |
| 45 | + * @param contentId 数据模型id | |
| 46 | + * | |
| 47 | + * @return 返回数据模型 | |
| 48 | + * | |
| 49 | + */ | |
| 50 | +- (CNLivePlayerModel *)searchInTable:(NSString *)contentId; | |
| 51 | + | |
| 52 | +/** | |
| 53 | + * 更新数据是否存在表中 | |
| 54 | + * | |
| 55 | + * @param contentId 数据模型id | |
| 56 | + * | |
| 57 | + * @return 返回更新是否成功 | |
| 58 | + * | |
| 59 | + */ | |
| 60 | +- (BOOL)updateInTable:(NSString *)contentId; | |
| 61 | + | |
| 62 | +/** | |
| 63 | + * 插入数据 | |
| 64 | + * | |
| 65 | + * @param model 数据模型 | |
| 66 | + * | |
| 67 | + * @return 返回插入是否成功 | |
| 68 | + * | |
| 69 | + */ | |
| 70 | +- (BOOL)insertTable:(CNLivePlayerModel *)model; | |
| 71 | + | |
| 72 | +/** | |
| 73 | + * 删除数据 | |
| 74 | + * | |
| 75 | + * @param contentId 数据模型id | |
| 76 | + * | |
| 77 | + * @return 返回删除是否成功 | |
| 78 | + * | |
| 79 | + */ | |
| 80 | +- (BOOL)deleteTable:(NSString *)contentId; | |
| 81 | + | |
| 82 | +/** | |
| 83 | + * 返回所有数据(字典数组) | |
| 84 | + * | |
| 85 | + * @return 返回NSMutableArray对象 | |
| 86 | + * | |
| 87 | + */ | |
| 88 | +- (NSMutableArray *)queryTable; | |
| 89 | + | |
| 90 | +/** | |
| 91 | + * 清除所有数据 | |
| 92 | + * | |
| 93 | + * @return 返回删除是否成功 | |
| 94 | + * | |
| 95 | + */ | |
| 96 | +- (BOOL)clearTable; | |
| 97 | + | |
| 98 | +@end | |
| 99 | + | |
| 100 | +NS_ASSUME_NONNULL_END | ... | ... |
Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDBTool.h
0 → 100644
| 1 | +// | |
| 2 | +// CNLivePlayerDBTool.h | |
| 3 | +// CNLivePlayer_Example | |
| 4 | +// | |
| 5 | +// Created by CNLive-zxw on 2019/8/19. | |
| 6 | +// Copyright © 2019 153993236@qq.com. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +/** | |
| 10 | + * 数据库管理类 | |
| 11 | + */ | |
| 12 | + | |
| 13 | +#import <Foundation/Foundation.h> | |
| 14 | + | |
| 15 | +NS_ASSUME_NONNULL_BEGIN | |
| 16 | +@class FMDatabase; | |
| 17 | +@class CNLivePlayerModel; | |
| 18 | + | |
| 19 | +typedef void(^DBReslutCallback)(int result,FMDatabase *db); | |
| 20 | + | |
| 21 | +@interface CNLivePlayerDBTool : NSObject | |
| 22 | + | |
| 23 | ++ (instancetype)shared; | |
| 24 | + | |
| 25 | +#pragma mark - 根据需要自定义操作 | |
| 26 | +/** | |
| 27 | + * 创建具体需要的数据库表 | |
| 28 | + * | |
| 29 | + */ | |
| 30 | +- (void)createTable; | |
| 31 | + | |
| 32 | +/** | |
| 33 | + * 判断数据是否存在表中 | |
| 34 | + * | |
| 35 | + * @param contentId 数据模型id | |
| 36 | + * | |
| 37 | + * @return 返回是否存在 | |
| 38 | + * | |
| 39 | + */ | |
| 40 | +- (BOOL)existInTable:(NSString *)contentId; | |
| 41 | + | |
| 42 | +/** | |
| 43 | + * 查找数据是否存在表中 | |
| 44 | + * | |
| 45 | + * @param contentId 数据模型id | |
| 46 | + * | |
| 47 | + * @return 返回数据模型 | |
| 48 | + * | |
| 49 | + */ | |
| 50 | +- (CNLivePlayerModel *)searchInTable:(NSString *)contentId; | |
| 51 | + | |
| 52 | +/** | |
| 53 | + * 更新数据是否存在表中 | |
| 54 | + * | |
| 55 | + * @param contentId 数据模型id | |
| 56 | + * | |
| 57 | + * @return 返回更新是否成功 | |
| 58 | + * | |
| 59 | + */ | |
| 60 | +- (BOOL)updateInTable:(NSString *)contentId; | |
| 61 | + | |
| 62 | +/** | |
| 63 | + * 插入数据 | |
| 64 | + * | |
| 65 | + * @param model 数据模型 | |
| 66 | + * | |
| 67 | + * @return 返回插入是否成功 | |
| 68 | + * | |
| 69 | + */ | |
| 70 | +- (BOOL)insertTable:(CNLivePlayerModel *)model; | |
| 71 | + | |
| 72 | +/** | |
| 73 | + * 删除数据 | |
| 74 | + * | |
| 75 | + * @param contentId 数据模型id | |
| 76 | + * | |
| 77 | + * @return 返回删除是否成功 | |
| 78 | + * | |
| 79 | + */ | |
| 80 | +- (BOOL)deleteTable:(NSString *)contentId; | |
| 81 | + | |
| 82 | +/** | |
| 83 | + * 返回所有数据(字典数组) | |
| 84 | + * | |
| 85 | + * @return 返回NSMutableArray对象 | |
| 86 | + * | |
| 87 | + */ | |
| 88 | +- (NSMutableArray *)queryTable; | |
| 89 | + | |
| 90 | +/** | |
| 91 | + * 清除所有数据 | |
| 92 | + * | |
| 93 | + * @return 返回删除是否成功 | |
| 94 | + * | |
| 95 | + */ | |
| 96 | +- (BOOL)clearTable; | |
| 97 | + | |
| 98 | +@end | |
| 99 | + | |
| 100 | +NS_ASSUME_NONNULL_END | ... | ... |
Example/build/XCBuildData/38057535c33936ecc9eb7cf82a338a1c-desc.xcbuild deleted
100644 → 0
No preview for this file type
Example/build/XCBuildData/38057535c33936ecc9eb7cf82a338a1c-manifest.xcbuild deleted
100644 → 0
| 1 | -client: | |
| 2 | - name: basic | |
| 3 | - version: 0 | |
| 4 | - file-system: default | |
| 5 | - | |
| 6 | -targets: | |
| 7 | - "": ["<all>"] | |
| 8 | - | |
| 9 | -nodes: | |
| 10 | - "/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build": {"is-mutated":true} | |
| 11 | - | |
| 12 | -commands: | |
| 13 | - "<all>": {"tool":"phony","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Pods_CNLivePlayer_Example","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Pods_CNLivePlayer_Tests","<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--immediate>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--end>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--modules-ready>"],"outputs":["<all>"]} | |
| 14 | - "<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Info.plist","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-Debug-iphoneos-stale-file-removal>"]} | |
| 15 | - "<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabase.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseAdditions.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabasePool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseQueue.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMResultSet.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabase.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseAdditions.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabasePool.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseQueue.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMResultSet.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Info.plist","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/FMDB_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB.LinkFileList","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-Debug-iphoneos-stale-file-removal>"]} | |
| 16 | - "<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":[],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build"],"outputs":["<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570-Debug-iphoneos-stale-file-removal>"]} | |
| 17 | - "<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods-CNLivePlayer_Example-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers/Pods-CNLivePlayer_Example-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Pods_CNLivePlayer_Example","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Info.plist","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources/Pods_CNLivePlayer_Example_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example.LinkFileList","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-Debug-iphoneos-stale-file-removal>"]} | |
| 18 | - "<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods-CNLivePlayer_Tests-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers/Pods-CNLivePlayer_Tests-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Pods_CNLivePlayer_Tests","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Info.plist","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources/Pods_CNLivePlayer_Tests_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests.LinkFileList","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-Debug-iphoneos-stale-file-removal>"]} | |
| 19 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangePermissions>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangeAlternatePermissions>"]} | |
| 20 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-StripSymbols>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangePermissions>"]} | |
| 21 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-CodeSign": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangeAlternatePermissions>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-CodeSign>"]} | |
| 22 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-CopyAside": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ProductPostprocessingTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-CopyAside>"]} | |
| 23 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-CodeSign>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-RegisterExecutionPolicyException>"]} | |
| 24 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-CopyAside>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-StripSymbols>"]} | |
| 25 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-Validate": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-RegisterExecutionPolicyException>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-Validate>"]} | |
| 26 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--XCFrameworkTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--GeneratedFilesTaskProducer>"]} | |
| 27 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--GeneratedFilesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>"]} | |
| 28 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Info.plist"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--InfoPlistTaskProducer>"]} | |
| 29 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ModuleMapTaskProducer>"]} | |
| 30 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase3-copy-bundle-resources>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--InfoPlistTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--VersionPlistTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--SanitizerTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ModuleMapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--SwiftStandardLibrariesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--StubBinaryTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--TestTargetTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ProductPostprocessingTaskProducer>"]} | |
| 31 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--start>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ProductStructureTaskProducer>"]} | |
| 32 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--SanitizerTaskProducer>"]} | |
| 33 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--StubBinaryTaskProducer>"]} | |
| 34 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase3-copy-bundle-resources>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--SwiftStandardLibrariesTaskProducer>"]} | |
| 35 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ProductPostprocessingTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--TestTargetPostprocessingTaskProducer>"]} | |
| 36 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--TestTargetTaskProducer>"]} | |
| 37 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--VersionPlistTaskProducer>"]} | |
| 38 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ProductStructureTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--XCFrameworkTaskProducer>"]} | |
| 39 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--modules-ready>","<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--modules-ready>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"]} | |
| 40 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--end": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangeAlternatePermissions>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangePermissions>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-CodeSign>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-CopyAside>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-RegisterExecutionPolicyException>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-StripSymbols>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-Validate>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--GeneratedFilesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--InfoPlistTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ModuleMapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ProductPostprocessingTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ProductStructureTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--SanitizerTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--StubBinaryTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--SwiftStandardLibrariesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--TestTargetPostprocessingTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--TestTargetTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--VersionPlistTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--XCFrameworkTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase1-compile-sources>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Modules/module.modulemap","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--end>"]} | |
| 41 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--end>","<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--end>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"]} | |
| 42 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>"]} | |
| 43 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"]} | |
| 44 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--modules-ready": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--modules-ready>"]} | |
| 45 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>"]} | |
| 46 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase1-compile-sources": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase1-compile-sources>"]} | |
| 47 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase1-compile-sources>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase3-copy-bundle-resources>"]} | |
| 48 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-ChangePermissions>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-ChangeAlternatePermissions>"]} | |
| 49 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-StripSymbols>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-ChangePermissions>"]} | |
| 50 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-CodeSign": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-ChangeAlternatePermissions>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-CodeSign>"]} | |
| 51 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-CopyAside": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--ProductPostprocessingTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-CopyAside>"]} | |
| 52 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-CodeSign>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-RegisterExecutionPolicyException>"]} | |
| 53 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-CopyAside>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-StripSymbols>"]} | |
| 54 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-Validate": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-RegisterExecutionPolicyException>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-Validate>"]} | |
| 55 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--XCFrameworkTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--GeneratedFilesTaskProducer>"]} | |
| 56 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--GeneratedFilesTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/all-product-headers.yaml"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>"]} | |
| 57 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Info.plist"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--InfoPlistTaskProducer>"]} | |
| 58 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--ModuleMapTaskProducer>"]} | |
| 59 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase3-copy-bundle-resources>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--InfoPlistTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--VersionPlistTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--SanitizerTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--ModuleMapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--SwiftStandardLibrariesTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--StubBinaryTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--TestTargetTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--ProductPostprocessingTaskProducer>"]} | |
| 60 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--start>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--ProductStructureTaskProducer>"]} | |
| 61 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--SanitizerTaskProducer>"]} | |
| 62 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--StubBinaryTaskProducer>"]} | |
| 63 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase3-copy-bundle-resources>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--SwiftStandardLibrariesTaskProducer>"]} | |
| 64 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--ProductPostprocessingTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--TestTargetPostprocessingTaskProducer>"]} | |
| 65 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--TestTargetTaskProducer>"]} | |
| 66 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--VersionPlistTaskProducer>"]} | |
| 67 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--ProductStructureTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--XCFrameworkTaskProducer>"]} | |
| 68 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"]} | |
| 69 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--end": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-ChangeAlternatePermissions>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-ChangePermissions>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-CodeSign>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-CopyAside>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-RegisterExecutionPolicyException>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-StripSymbols>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-Validate>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--GeneratedFilesTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--InfoPlistTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--ModuleMapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--ProductPostprocessingTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--ProductStructureTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--SanitizerTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--StubBinaryTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--SwiftStandardLibrariesTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--TestTargetPostprocessingTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--TestTargetTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--VersionPlistTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--XCFrameworkTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--generated-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase1-compile-sources>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabase.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseAdditions.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabasePool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseQueue.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMResultSet.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabase.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseAdditions.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabasePool.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseQueue.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMResultSet.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Modules/module.modulemap","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/FMDB_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB.LinkFileList","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--end>"]} | |
| 70 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"]} | |
| 71 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--generated-headers": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--generated-headers>"]} | |
| 72 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate>"]} | |
| 73 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--modules-ready": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabase.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseAdditions.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabasePool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseQueue.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMResultSet.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabase.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseAdditions.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabasePool.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseQueue.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMResultSet.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/FMDB_vers.c"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--modules-ready>"]} | |
| 74 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabase.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseAdditions.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabasePool.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseQueue.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMResultSet.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB-umbrella.h"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers>"]} | |
| 75 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase1-compile-sources": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabase.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseAdditions.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabasePool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseQueue.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMResultSet.o","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/FMDB_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB.LinkFileList"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase1-compile-sources>"]} | |
| 76 | - "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase1-compile-sources>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase3-copy-bundle-resources>"]} | |
| 77 | - "Gate target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--begin-compiling": {"tool":"phony","inputs":["<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570-Debug-iphoneos-stale-file-removal>"],"outputs":["<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--begin-compiling>"]} | |
| 78 | - "Gate target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--end": {"tool":"phony","inputs":["<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--entry>"],"outputs":["<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--end>"]} | |
| 79 | - "Gate target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--entry": {"tool":"phony","inputs":["<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570-Debug-iphoneos-stale-file-removal>","<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--begin-compiling>"],"outputs":["<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--entry>"]} | |
| 80 | - "Gate target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--immediate": {"tool":"phony","inputs":["<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570-Debug-iphoneos-stale-file-removal>"],"outputs":["<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--immediate>"]} | |
| 81 | - "Gate target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--modules-ready": {"tool":"phony","inputs":["<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--begin-compiling>"],"outputs":["<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--modules-ready>"]} | |
| 82 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-ChangePermissions>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-ChangeAlternatePermissions>"]} | |
| 83 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-StripSymbols>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-ChangePermissions>"]} | |
| 84 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-CodeSign": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-ChangeAlternatePermissions>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-CodeSign>"]} | |
| 85 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-CopyAside": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--ProductPostprocessingTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-CopyAside>"]} | |
| 86 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-CodeSign>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-RegisterExecutionPolicyException>"]} | |
| 87 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-CopyAside>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-StripSymbols>"]} | |
| 88 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-Validate": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-RegisterExecutionPolicyException>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-Validate>"]} | |
| 89 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--XCFrameworkTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--GeneratedFilesTaskProducer>"]} | |
| 90 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/all-product-headers.yaml"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>"]} | |
| 91 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Info.plist"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--InfoPlistTaskProducer>"]} | |
| 92 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/module.modulemap"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--ModuleMapTaskProducer>"]} | |
| 93 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase3-copy-bundle-resources>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--InfoPlistTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--VersionPlistTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--SanitizerTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--ModuleMapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--SwiftStandardLibrariesTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--StubBinaryTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--TestTargetTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--ProductPostprocessingTaskProducer>"]} | |
| 94 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--start>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--ProductStructureTaskProducer>"]} | |
| 95 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--SanitizerTaskProducer>"]} | |
| 96 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--StubBinaryTaskProducer>"]} | |
| 97 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase3-copy-bundle-resources>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--SwiftStandardLibrariesTaskProducer>"]} | |
| 98 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--ProductPostprocessingTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--TestTargetPostprocessingTaskProducer>"]} | |
| 99 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--TestTargetTaskProducer>"]} | |
| 100 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--VersionPlistTaskProducer>"]} | |
| 101 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--ProductStructureTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--XCFrameworkTaskProducer>"]} | |
| 102 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--modules-ready>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--modules-ready>","<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--modules-ready>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"]} | |
| 103 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--end": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--entry>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-ChangeAlternatePermissions>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-ChangePermissions>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-CodeSign>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-CopyAside>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-RegisterExecutionPolicyException>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-StripSymbols>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-Validate>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--InfoPlistTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--ModuleMapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--ProductPostprocessingTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--ProductStructureTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--SanitizerTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--StubBinaryTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--SwiftStandardLibrariesTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--TestTargetPostprocessingTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--TestTargetTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--VersionPlistTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--XCFrameworkTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--generated-headers>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase0-copy-headers>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase1-compile-sources>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods-CNLivePlayer_Example-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers/Pods-CNLivePlayer_Example-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Modules/module.modulemap","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Pods_CNLivePlayer_Example>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources/Pods_CNLivePlayer_Example_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example.LinkFileList","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/module.modulemap"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--end>"]} | |
| 104 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--entry": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--end>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--end>","<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--end>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--entry>"]} | |
| 105 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--generated-headers": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--generated-headers>"]} | |
| 106 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--immediate": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--immediate>"]} | |
| 107 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--modules-ready": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods-CNLivePlayer_Example-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers/Pods-CNLivePlayer_Example-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources/Pods_CNLivePlayer_Example_vers.c"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--modules-ready>"]} | |
| 108 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase0-copy-headers": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers/Pods-CNLivePlayer_Example-umbrella.h"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase0-copy-headers>"]} | |
| 109 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase1-compile-sources": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase0-copy-headers>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods-CNLivePlayer_Example-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example_vers.o","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Pods_CNLivePlayer_Example>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources/Pods_CNLivePlayer_Example_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example.LinkFileList"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase1-compile-sources>"]} | |
| 110 | - "Gate target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase1-compile-sources>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase3-copy-bundle-resources>"]} | |
| 111 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-ChangePermissions>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-ChangeAlternatePermissions>"]} | |
| 112 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-StripSymbols>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-ChangePermissions>"]} | |
| 113 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-CodeSign": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-ChangeAlternatePermissions>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-CodeSign>"]} | |
| 114 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-CopyAside": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--ProductPostprocessingTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-CopyAside>"]} | |
| 115 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-CodeSign>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-RegisterExecutionPolicyException>"]} | |
| 116 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-CopyAside>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-StripSymbols>"]} | |
| 117 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-Validate": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-RegisterExecutionPolicyException>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-Validate>"]} | |
| 118 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--XCFrameworkTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--GeneratedFilesTaskProducer>"]} | |
| 119 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/all-product-headers.yaml"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>"]} | |
| 120 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Info.plist"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--InfoPlistTaskProducer>"]} | |
| 121 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/module.modulemap"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--ModuleMapTaskProducer>"]} | |
| 122 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase3-copy-bundle-resources>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--InfoPlistTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--VersionPlistTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--SanitizerTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--ModuleMapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--SwiftStandardLibrariesTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--StubBinaryTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--TestTargetTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--ProductPostprocessingTaskProducer>"]} | |
| 123 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--start>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--ProductStructureTaskProducer>"]} | |
| 124 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--SanitizerTaskProducer>"]} | |
| 125 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--StubBinaryTaskProducer>"]} | |
| 126 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase3-copy-bundle-resources>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--SwiftStandardLibrariesTaskProducer>"]} | |
| 127 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--ProductPostprocessingTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--TestTargetPostprocessingTaskProducer>"]} | |
| 128 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--TestTargetTaskProducer>"]} | |
| 129 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--VersionPlistTaskProducer>"]} | |
| 130 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--ProductStructureTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--XCFrameworkTaskProducer>"]} | |
| 131 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--modules-ready>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"]} | |
| 132 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--end": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--entry>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-ChangeAlternatePermissions>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-ChangePermissions>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-CodeSign>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-CopyAside>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-RegisterExecutionPolicyException>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-StripSymbols>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-Validate>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--InfoPlistTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--ModuleMapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--ProductPostprocessingTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--ProductStructureTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--SanitizerTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--StubBinaryTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--SwiftStandardLibrariesTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--TestTargetPostprocessingTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--TestTargetTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--VersionPlistTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--XCFrameworkTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--generated-headers>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase0-copy-headers>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase1-compile-sources>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods-CNLivePlayer_Tests-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers/Pods-CNLivePlayer_Tests-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Modules/module.modulemap","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Pods_CNLivePlayer_Tests>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources/Pods_CNLivePlayer_Tests_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests.LinkFileList","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/module.modulemap"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--end>"]} | |
| 133 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--entry": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--end>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--entry>"]} | |
| 134 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--generated-headers": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--generated-headers>"]} | |
| 135 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--immediate": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--immediate>"]} | |
| 136 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--modules-ready": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods-CNLivePlayer_Tests-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers/Pods-CNLivePlayer_Tests-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources/Pods_CNLivePlayer_Tests_vers.c"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--modules-ready>"]} | |
| 137 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase0-copy-headers": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers/Pods-CNLivePlayer_Tests-umbrella.h"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase0-copy-headers>"]} | |
| 138 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase1-compile-sources": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase0-copy-headers>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods-CNLivePlayer_Tests-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests_vers.o","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Pods_CNLivePlayer_Tests>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources/Pods_CNLivePlayer_Tests_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests.LinkFileList"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase1-compile-sources>"]} | |
| 139 | - "Gate target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase1-compile-sources>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase3-copy-bundle-resources>"]} | |
| 140 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-dummy.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-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=CNLivePlayer","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-include","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-dummy.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.d"],"deps-style":"makefile","signature":"ab6007aa5ed33e8aab06fa9c61b9f162"} | |
| 141 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayer.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.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=CNLivePlayer","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-include","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayer.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.d"],"deps-style":"makefile","signature":"56bae902fa68fbc3d4e68231954d5553"} | |
| 142 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerDBTool.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerDBTool.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerDBTool.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.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=CNLivePlayer","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-include","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerDBTool.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.d"],"deps-style":"makefile","signature":"bb3a6a359c437c90cf206308aef86af2"} | |
| 143 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayerManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayerManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayerManager.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.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=CNLivePlayer","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-include","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayerManager.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.d"],"deps-style":"makefile","signature":"8e1c091941471e704720e041e3d0ad7d"} | |
| 144 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerModel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerModel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerModel.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.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=CNLivePlayer","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-include","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerModel.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.d"],"deps-style":"makefile","signature":"a1147049f187c078d0f7f9f4f41a6aee"} | |
| 145 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/DataRequest/CNLivePlayerRequest.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/DataRequest/CNLivePlayerRequest.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/DataRequest/CNLivePlayerRequest.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.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=CNLivePlayer","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-include","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/DataRequest/CNLivePlayerRequest.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.d"],"deps-style":"makefile","signature":"344ce0767cb7962a7e97cb913d4f0174"} | |
| 146 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_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=CNLivePlayer","-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-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.d"],"deps-style":"makefile","signature":"9c905210bc5cd826c8185c54efad5aa6"} | |
| 147 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerDelegate.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerDelegate.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerDelegate.h/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h"]} | |
| 148 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerHeader.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerHeader.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerHeader.h/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h"]} | |
| 149 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerTypeDef.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerTypeDef.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerTypeDef.h/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h"]} | |
| 150 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayer.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayer.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayer.h/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h"]} | |
| 151 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayerManager.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayerManager.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayerManager.h/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h"]} | |
| 152 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-umbrella.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-umbrella.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-umbrella.h/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h"]} | |
| 153 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:Ditto /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Modules/module.modulemap"]} | |
| 154 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:Ld /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer normal arm64","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer>"],"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/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-filelist","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList","-install_name","@rpath/CNLivePlayer.framework/CNLivePlayer","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-lbz2","-lc++","-liconv","-lresolv","-lsqlite3.0","-lz","-framework","AVFoundation","-framework","AVKit","-framework","Accelerate","-framework","AudioToolbox","-framework","CoreAudio","-framework","CoreGraphics","-framework","CoreMedia","-framework","CoreTelephony","-framework","CoreVideo","-framework","Foundation","-framework","MediaPlayer","-framework","OpenGLES","-framework","PLPlayerKit","-framework","QuartzCore","-framework","UIKit","-framework","VideoToolbox","-framework","Accelerate","-framework","AudioToolbox","-framework","AVFoundation","-framework","AVKit","-framework","CoreAudio","-framework","CoreGraphics","-framework","CoreMedia","-framework","CoreTelephony","-framework","FMDB","-framework","Foundation","-framework","MediaPlayer","-framework","OpenGLES","-framework","QuartzCore","-framework","UIKit","-framework","VideoToolbox","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_dependency_info.dat"],"deps-style":"dependency-info","signature":"6b947e7f7288352402ac9b948a40b986"} | |
| 155 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--start>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework>"]} | |
| 156 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--start>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers>"]} | |
| 157 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Info.plist /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Info.plist /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-Info.plist","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Info.plist"]} | |
| 158 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-RegisterExecutionPolicyException>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","signature":"abc15bd5c89a08a566aea2e1ba7573fe"} | |
| 159 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--GeneratedFilesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap"]} | |
| 160 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-target-headers.hmap","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--GeneratedFilesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-target-headers.hmap"]} | |
| 161 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--GeneratedFilesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap"]} | |
| 162 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--GeneratedFilesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap"]} | |
| 163 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--GeneratedFilesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap"]} | |
| 164 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer.hmap","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--GeneratedFilesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer.hmap"]} | |
| 165 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c"]} | |
| 166 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList"]} | |
| 167 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--GeneratedFilesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml"]} | |
| 168 | - "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap"]} | |
| 169 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB-dummy.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB-dummy.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-prefix.pch","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-dummy.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--generated-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB-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=FMDB","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-include","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB-dummy.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-dummy.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB-dummy.d"],"deps-style":"makefile","signature":"935fc751272b589288406f130702bd05"} | |
| 170 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_vers.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/FMDB_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_vers.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/FMDB_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/FMDB_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--generated-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_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=FMDB","-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-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_vers.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/FMDB_vers.c","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_vers.d"],"deps-style":"makefile","signature":"f227a30e2b4b22b1b2706238ad80bf14"} | |
| 171 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabase.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabase.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabase.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabase.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-prefix.pch","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabase.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--generated-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabase.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=FMDB","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-DOS_OBJECT_USE_OBJC=0","-include","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabase.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabase.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabase.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabase.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabase.d"],"deps-style":"makefile","signature":"4739bb384cd767c6a646aad930f502e5"} | |
| 172 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseAdditions.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseAdditions.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseAdditions.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseAdditions.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-prefix.pch","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseAdditions.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--generated-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseAdditions.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=FMDB","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-DOS_OBJECT_USE_OBJC=0","-include","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseAdditions.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseAdditions.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseAdditions.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseAdditions.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseAdditions.d"],"deps-style":"makefile","signature":"81fe9c21c4373f0e3546b8b216325b75"} | |
| 173 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabasePool.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabasePool.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabasePool.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabasePool.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-prefix.pch","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabasePool.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--generated-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabasePool.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=FMDB","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-DOS_OBJECT_USE_OBJC=0","-include","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabasePool.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabasePool.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabasePool.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabasePool.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabasePool.d"],"deps-style":"makefile","signature":"484a3f02cb45a38721b4674b126968c8"} | |
| 174 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseQueue.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseQueue.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseQueue.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseQueue.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-prefix.pch","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseQueue.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--generated-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseQueue.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=FMDB","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-DOS_OBJECT_USE_OBJC=0","-include","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseQueue.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseQueue.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseQueue.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseQueue.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseQueue.d"],"deps-style":"makefile","signature":"f161751ca733b1f7ec9aa1e732419139"} | |
| 175 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMResultSet.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMResultSet.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMResultSet.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMResultSet.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-prefix.pch","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMResultSet.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--generated-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMResultSet.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=FMDB","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-DOS_OBJECT_USE_OBJC=0","-include","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMResultSet.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMResultSet.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMResultSet.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMResultSet.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMResultSet.d"],"deps-style":"makefile","signature":"d2dd3abc40cebea1f6c3e96d5b774b8f"} | |
| 176 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDB.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDB.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDB.h/","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB.h"]} | |
| 177 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabase.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabase.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabase.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabase.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabase.h/","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabase.h"]} | |
| 178 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseAdditions.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseAdditions.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseAdditions.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseAdditions.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseAdditions.h/","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseAdditions.h"]} | |
| 179 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabasePool.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabasePool.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabasePool.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabasePool.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabasePool.h/","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabasePool.h"]} | |
| 180 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseQueue.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseQueue.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseQueue.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseQueue.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseQueue.h/","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseQueue.h"]} | |
| 181 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMResultSet.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMResultSet.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMResultSet.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMResultSet.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMResultSet.h/","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMResultSet.h"]} | |
| 182 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-umbrella.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-umbrella.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-umbrella.h/","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB-umbrella.h"]} | |
| 183 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CreateBuildDirectory /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build","inputs":[],"outputs":["<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build"]} | |
| 184 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:Ditto /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap/","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Modules/module.modulemap"]} | |
| 185 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:Ld /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB normal arm64","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabase.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseAdditions.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabasePool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseQueue.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMResultSet.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB.LinkFileList","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB>"],"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/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-filelist","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB.LinkFileList","-install_name","@rpath/FMDB.framework/FMDB","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-lsqlite3","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_dependency_info.dat"],"deps-style":"dependency-info","signature":"41694e05413478664ff397cb30ec6a38"} | |
| 186 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--start>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework>"]} | |
| 187 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--start>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers>"]} | |
| 188 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Info.plist /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Info.plist /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-Info.plist","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Info.plist"]} | |
| 189 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-RegisterExecutionPolicyException>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","signature":"c47640ca11a2275e6c6670dcfa31f30c"} | |
| 190 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/FMDB_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/FMDB_vers.c","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/FMDB_vers.c"]} | |
| 191 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-non-framework-target-headers.hmap","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--GeneratedFilesTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-non-framework-target-headers.hmap"]} | |
| 192 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-target-headers.hmap","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--GeneratedFilesTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-target-headers.hmap"]} | |
| 193 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-generated-files.hmap","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--GeneratedFilesTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-generated-files.hmap"]} | |
| 194 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-own-target-headers.hmap","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--GeneratedFilesTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-own-target-headers.hmap"]} | |
| 195 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-project-headers.hmap","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--GeneratedFilesTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-project-headers.hmap"]} | |
| 196 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB.hmap","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--GeneratedFilesTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB.hmap"]} | |
| 197 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB.LinkFileList","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB.LinkFileList"]} | |
| 198 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/all-product-headers.yaml","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--GeneratedFilesTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/all-product-headers.yaml"]} | |
| 199 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap"]} | |
| 200 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods-CNLivePlayer_Example-dummy.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Example/Pods-CNLivePlayer_Example-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods-CNLivePlayer_Example-dummy.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Example/Pods-CNLivePlayer_Example-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Example/Pods-CNLivePlayer_Example-dummy.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/module.modulemap","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--generated-headers>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase0-copy-headers>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods-CNLivePlayer_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_CNLivePlayer_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-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods-CNLivePlayer_Example-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods-CNLivePlayer_Example-dummy.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Example/Pods-CNLivePlayer_Example-dummy.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods-CNLivePlayer_Example-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods-CNLivePlayer_Example-dummy.d"],"deps-style":"makefile","signature":"f0ea3c6da8b98b136ee71b2ec19b15ee"} | |
| 201 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example_vers.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources/Pods_CNLivePlayer_Example_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example_vers.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources/Pods_CNLivePlayer_Example_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources/Pods_CNLivePlayer_Example_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/module.modulemap","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--generated-headers>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase0-copy-headers>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_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_CNLivePlayer_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-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example_vers.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources/Pods_CNLivePlayer_Example_vers.c","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example_vers.d"],"deps-style":"makefile","signature":"ef8c2839f459ef79c3b8f3b65be211b1"} | |
| 202 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Example/Pods-CNLivePlayer_Example-umbrella.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers/Pods-CNLivePlayer_Example-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Example/Pods-CNLivePlayer_Example-umbrella.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers/Pods-CNLivePlayer_Example-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Example/Pods-CNLivePlayer_Example-umbrella.h/","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers/Pods-CNLivePlayer_Example-umbrella.h"]} | |
| 203 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:Ditto /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/module.modulemap /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/module.modulemap /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/module.modulemap/","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Modules/module.modulemap"]} | |
| 204 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:Libtool /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Pods_CNLivePlayer_Example normal arm64": {"tool":"shell","description":"Libtool /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Pods_CNLivePlayer_Example normal arm64","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods-CNLivePlayer_Example-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example.LinkFileList","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase0-copy-headers>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Pods_CNLivePlayer_Example","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Pods_CNLivePlayer_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/CNLivePlayer/Example/build/Debug-iphoneos","-filelist","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example.LinkFileList","-framework","Foundation","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Pods_CNLivePlayer_Example"],"env":{"IPHONEOS_DEPLOYMENT_TARGET":"9.0"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","signature":"d7501ba359eb24f3a0b58ba09dd2543c"} | |
| 205 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--start>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework>"]} | |
| 206 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--start>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Headers>"]} | |
| 207 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Info.plist /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Example/Pods-CNLivePlayer_Example-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Info.plist /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Example/Pods-CNLivePlayer_Example-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Example/Pods-CNLivePlayer_Example-Info.plist","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework/Info.plist"]} | |
| 208 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--Barrier-RegisterExecutionPolicyException>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Example.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","signature":"865a5c20451689861daf34ca11313201"} | |
| 209 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources/Pods_CNLivePlayer_Example_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources/Pods_CNLivePlayer_Example_vers.c","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase0-copy-headers>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/DerivedSources/Pods_CNLivePlayer_Example_vers.c"]} | |
| 210 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example.LinkFileList","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--phase0-copy-headers>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Objects-normal/arm64/Pods_CNLivePlayer_Example.LinkFileList"]} | |
| 211 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-all-non-framework-target-headers.hmap","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-all-non-framework-target-headers.hmap"]} | |
| 212 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-all-target-headers.hmap","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-all-target-headers.hmap"]} | |
| 213 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-generated-files.hmap","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-generated-files.hmap"]} | |
| 214 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-own-target-headers.hmap","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-own-target-headers.hmap"]} | |
| 215 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-project-headers.hmap","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example-project-headers.hmap"]} | |
| 216 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example.hmap","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/Pods_CNLivePlayer_Example.hmap"]} | |
| 217 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/all-product-headers.yaml","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/all-product-headers.yaml"]} | |
| 218 | - "target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/module.modulemap","inputs":["<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Example-20093e4bad4af238968dc84c82fd07009746aa029395c0b97f61b6df535de33f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Example.build/module.modulemap"]} | |
| 219 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods-CNLivePlayer_Tests-dummy.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Tests/Pods-CNLivePlayer_Tests-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods-CNLivePlayer_Tests-dummy.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Tests/Pods-CNLivePlayer_Tests-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Tests/Pods-CNLivePlayer_Tests-dummy.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/module.modulemap","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--generated-headers>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase0-copy-headers>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods-CNLivePlayer_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_CNLivePlayer_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-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods-CNLivePlayer_Tests-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods-CNLivePlayer_Tests-dummy.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Tests/Pods-CNLivePlayer_Tests-dummy.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods-CNLivePlayer_Tests-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods-CNLivePlayer_Tests-dummy.d"],"deps-style":"makefile","signature":"4dfdc4509856156f066eaeeeceab60bf"} | |
| 220 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests_vers.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources/Pods_CNLivePlayer_Tests_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests_vers.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources/Pods_CNLivePlayer_Tests_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources/Pods_CNLivePlayer_Tests_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/module.modulemap","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--generated-headers>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase0-copy-headers>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_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_CNLivePlayer_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-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests_vers.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources/Pods_CNLivePlayer_Tests_vers.c","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests_vers.d"],"deps-style":"makefile","signature":"a721917ff5a8456035aa7f11127c828d"} | |
| 221 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Tests/Pods-CNLivePlayer_Tests-umbrella.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers/Pods-CNLivePlayer_Tests-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Tests/Pods-CNLivePlayer_Tests-umbrella.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers/Pods-CNLivePlayer_Tests-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Tests/Pods-CNLivePlayer_Tests-umbrella.h/","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers/Pods-CNLivePlayer_Tests-umbrella.h"]} | |
| 222 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:Ditto /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/module.modulemap /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/module.modulemap /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/module.modulemap/","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Modules/module.modulemap"]} | |
| 223 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:Libtool /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Pods_CNLivePlayer_Tests normal arm64": {"tool":"shell","description":"Libtool /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Pods_CNLivePlayer_Tests normal arm64","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods-CNLivePlayer_Tests-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests.LinkFileList","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase0-copy-headers>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Pods_CNLivePlayer_Tests","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Pods_CNLivePlayer_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/CNLivePlayer/Example/build/Debug-iphoneos","-filelist","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests.LinkFileList","-framework","Foundation","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Pods_CNLivePlayer_Tests"],"env":{"IPHONEOS_DEPLOYMENT_TARGET":"9.0"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","signature":"d4050f68b3d2da588ae30533b09c9bbd"} | |
| 224 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--start>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework>"]} | |
| 225 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--start>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Headers>"]} | |
| 226 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Info.plist /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Tests/Pods-CNLivePlayer_Tests-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Info.plist /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Tests/Pods-CNLivePlayer_Tests-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/Pods-CNLivePlayer_Tests/Pods-CNLivePlayer_Tests-Info.plist","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework/Info.plist"]} | |
| 227 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--Barrier-RegisterExecutionPolicyException>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/Pods_CNLivePlayer_Tests.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","signature":"822f04d724b91cf3534ef26b290abbc7"} | |
| 228 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources/Pods_CNLivePlayer_Tests_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources/Pods_CNLivePlayer_Tests_vers.c","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase0-copy-headers>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/DerivedSources/Pods_CNLivePlayer_Tests_vers.c"]} | |
| 229 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests.LinkFileList","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--phase0-copy-headers>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Objects-normal/arm64/Pods_CNLivePlayer_Tests.LinkFileList"]} | |
| 230 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-all-non-framework-target-headers.hmap","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-all-non-framework-target-headers.hmap"]} | |
| 231 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-all-target-headers.hmap","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-all-target-headers.hmap"]} | |
| 232 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-generated-files.hmap","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-generated-files.hmap"]} | |
| 233 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-own-target-headers.hmap","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-own-target-headers.hmap"]} | |
| 234 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-project-headers.hmap","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests-project-headers.hmap"]} | |
| 235 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests.hmap","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/Pods_CNLivePlayer_Tests.hmap"]} | |
| 236 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/all-product-headers.yaml","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--GeneratedFilesTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/all-product-headers.yaml"]} | |
| 237 | - "target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/module.modulemap","inputs":["<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--HeadermapTaskProducer>","<target-Pods-CNLivePlayer_Tests-20093e4bad4af238968dc84c82fd070099d0af0eb7b827b47cd158ed801d5c6e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/Pods-CNLivePlayer_Tests.build/module.modulemap"]} | |
| 238 | - |
Example/build/XCBuildData/92cc6c4b5114ea47960f80291848fe3a-desc.xcbuild renamed to Example/build/XCBuildData/3e30db859745fc5f73ca04ad2417da50-desc.xcbuild
No preview for this file type
Example/build/XCBuildData/92cc6c4b5114ea47960f80291848fe3a-manifest.xcbuild renamed to Example/build/XCBuildData/3e30db859745fc5f73ca04ad2417da50-manifest.xcbuild
| ... | ... | @@ -11,7 +11,7 @@ nodes: |
| 11 | 11 | |
| 12 | 12 | commands: |
| 13 | 13 | "<all>": {"tool":"phony","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--end>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--modules-ready>","<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--immediate>"],"outputs":["<all>"]} |
| 14 | - "<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Info.plist","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-Debug-iphoneos-stale-file-removal>"]} | |
| 14 | + "<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDBTool.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Info.plist","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-Debug-iphoneos-stale-file-removal>"]} | |
| 15 | 15 | "<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabase.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseAdditions.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabasePool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseQueue.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMResultSet.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabase.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseAdditions.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabasePool.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseQueue.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMResultSet.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Info.plist","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/DerivedSources/FMDB_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/FMDB.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB.LinkFileList","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-Debug-iphoneos-stale-file-removal>"]} |
| 16 | 16 | "<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":[],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build"],"outputs":["<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570-Debug-iphoneos-stale-file-removal>"]} |
| 17 | 17 | "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangePermissions>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangeAlternatePermissions>"]} |
| ... | ... | @@ -35,12 +35,12 @@ commands: |
| 35 | 35 | "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--VersionPlistTaskProducer>"]} |
| 36 | 36 | "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ProductStructureTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--XCFrameworkTaskProducer>"]} |
| 37 | 37 | "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--modules-ready>","<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--modules-ready>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"]} |
| 38 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--end": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangeAlternatePermissions>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangePermissions>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-CodeSign>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-CopyAside>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-RegisterExecutionPolicyException>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-StripSymbols>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-Validate>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--GeneratedFilesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--InfoPlistTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ModuleMapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ProductPostprocessingTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ProductStructureTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--SanitizerTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--StubBinaryTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--SwiftStandardLibrariesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--TestTargetPostprocessingTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--TestTargetTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--VersionPlistTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--XCFrameworkTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase1-compile-sources>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Modules/module.modulemap","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--end>"]} | |
| 38 | + "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--end": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangeAlternatePermissions>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-ChangePermissions>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-CodeSign>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-CopyAside>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-RegisterExecutionPolicyException>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-StripSymbols>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--Barrier-Validate>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--GeneratedFilesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--InfoPlistTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ModuleMapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ProductPostprocessingTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--ProductStructureTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--SanitizerTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--StubBinaryTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--SwiftStandardLibrariesTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--TestTargetPostprocessingTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--TestTargetTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--VersionPlistTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--XCFrameworkTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase1-compile-sources>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDBTool.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Modules/module.modulemap","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework>","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer.hmap","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--end>"]} | |
| 39 | 39 | "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--end>","<target-PLPlayerKit-20093e4bad4af238968dc84c82fd070030ef43ec0a718af79fe5c40d1515c570--end>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"]} |
| 40 | 40 | "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>"]} |
| 41 | 41 | "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"]} |
| 42 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--modules-ready": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--modules-ready>"]} | |
| 43 | - "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>"]} | |
| 42 | + "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--modules-ready": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDBTool.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--modules-ready>"]} | |
| 43 | + "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDBTool.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>"]} | |
| 44 | 44 | "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase1-compile-sources": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase1-compile-sources>"]} |
| 45 | 45 | "Gate target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase1-compile-sources>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase3-copy-bundle-resources>"]} |
| 46 | 46 | "Gate target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-ChangePermissions>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--begin-compiling>"],"outputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--Barrier-ChangeAlternatePermissions>"]} |
| ... | ... | @@ -84,12 +84,14 @@ commands: |
| 84 | 84 | "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerModel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerModel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerModel.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.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=CNLivePlayer","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-include","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerModel.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.d"],"deps-style":"makefile","signature":"a1147049f187c078d0f7f9f4f41a6aee"} |
| 85 | 85 | "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/DataRequest/CNLivePlayerRequest.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/DataRequest/CNLivePlayerRequest.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/DataRequest/CNLivePlayerRequest.m","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.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=CNLivePlayer","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-include","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/DataRequest/CNLivePlayerRequest.m","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.d"],"deps-style":"makefile","signature":"344ce0767cb7962a7e97cb913d4f0174"} |
| 86 | 86 | "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--generated-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_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=CNLivePlayer","-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-ayeyoveahbldqeejrszmmfldsqzw/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/CNLivePlayer-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/include","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.dia","-c","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/DerivedSources/CNLivePlayer_vers.c","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.d"],"deps-style":"makefile","signature":"9c905210bc5cd826c8185c54efad5aa6"} |
| 87 | + "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerDBTool.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDBTool.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerDBTool.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDBTool.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Database/CNLivePlayerDBTool.h/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDBTool.h"]} | |
| 87 | 88 | "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerDelegate.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerDelegate.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerDelegate.h/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerDelegate.h"]} |
| 88 | 89 | "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerHeader.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerHeader.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerHeader.h/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerHeader.h"]} |
| 89 | 90 | "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerTypeDef.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerTypeDef.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Header/CNLivePlayerTypeDef.h/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerTypeDef.h"]} |
| 90 | 91 | "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayer.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayer.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayer.h/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer.h"]} |
| 91 | 92 | "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayerManager.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayerManager.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/CNLivePlayer/Classes/Player/CNLivePlayerManager.h/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayerManager.h"]} |
| 92 | 93 | "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-umbrella.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-umbrella.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/CNLivePlayer/CNLivePlayer-umbrella.h/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Headers/CNLivePlayer-umbrella.h"]} |
| 94 | + "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:CreateBuildDirectory /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build","inputs":[],"outputs":["<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build"]} | |
| 93 | 95 | "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:Ditto /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/module.modulemap/","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--HeadermapTaskProducer>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/Modules/module.modulemap"]} |
| 94 | 96 | "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:Ld /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer normal arm64","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerDBTool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerManager.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerModel.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayerRequest.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--phase0-copy-headers>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer>"],"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/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/PLPlayerKit/Pod/Library","-filelist","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer.LinkFileList","-install_name","@rpath/CNLivePlayer.framework/CNLivePlayer","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-lbz2","-lc++","-liconv","-lresolv","-lsqlite3.0","-lz","-framework","AVFoundation","-framework","AVKit","-framework","Accelerate","-framework","AudioToolbox","-framework","CoreAudio","-framework","CoreGraphics","-framework","CoreMedia","-framework","CoreTelephony","-framework","CoreVideo","-framework","Foundation","-framework","MediaPlayer","-framework","OpenGLES","-framework","PLPlayerKit","-framework","QuartzCore","-framework","UIKit","-framework","VideoToolbox","-framework","Accelerate","-framework","AudioToolbox","-framework","AVFoundation","-framework","AVKit","-framework","CoreAudio","-framework","CoreGraphics","-framework","CoreMedia","-framework","CoreTelephony","-framework","FMDB","-framework","Foundation","-framework","MediaPlayer","-framework","OpenGLES","-framework","QuartzCore","-framework","UIKit","-framework","VideoToolbox","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework/CNLivePlayer"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/CNLivePlayer.build/Objects-normal/arm64/CNLivePlayer_dependency_info.dat"],"deps-style":"dependency-info","signature":"6b947e7f7288352402ac9b948a40b986"} |
| 95 | 97 | "target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2-:Debug:MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework","inputs":["<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--start>","<target-CNLivePlayer-20093e4bad4af238968dc84c82fd07007ee1f4d33e4e747d23704da612b3d4f2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/CNLivePlayer/CNLivePlayer.framework>"]} |
| ... | ... | @@ -120,7 +122,6 @@ commands: |
| 120 | 122 | "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseQueue.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseQueue.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseQueue.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseQueue.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMDatabaseQueue.h/","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDatabaseQueue.h"]} |
| 121 | 123 | "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMResultSet.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMResultSet.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMResultSet.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMResultSet.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/FMDB/src/fmdb/FMResultSet.h/","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMResultSet.h"]} |
| 122 | 124 | "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-umbrella.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-umbrella.h /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods/Target Support Files/FMDB/FMDB-umbrella.h/","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Headers/FMDB-umbrella.h"]} |
| 123 | - "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:CreateBuildDirectory /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build","inputs":[],"outputs":["<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build>","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build"]} | |
| 124 | 125 | "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:Ditto /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/module.modulemap/","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--HeadermapTaskProducer>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/Modules/module.modulemap"]} |
| 125 | 126 | "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:Ld /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB normal arm64","inputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabase.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseAdditions.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabasePool.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDatabaseQueue.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB-dummy.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMResultSet.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_vers.o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB.LinkFileList","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--phase0-copy-headers>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB","<Linked Binary /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB>"],"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/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-F/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB","-filelist","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB.LinkFileList","-install_name","@rpath/FMDB.framework/FMDB","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-lsqlite3","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework/FMDB"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Pods.build/Debug-iphoneos/FMDB.build/Objects-normal/arm64/FMDB_dependency_info.dat"],"deps-style":"dependency-info","signature":"41694e05413478664ff397cb30ec6a38"} |
| 126 | 127 | "target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d-:Debug:MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework","inputs":["<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--start>","<target-FMDB-20093e4bad4af238968dc84c82fd0700e5199a3f70555689be7018ee7f9f878d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework","<MkDir /Users/cnlive-zxw/Desktop/CNLivePlayer/Example/build/Debug-iphoneos/FMDB/FMDB.framework>"]} | ... | ... |