From 8fe222e09db7bd7d4f0a68bb6ba44926359c619c Mon Sep 17 00:00:00 2001 From: renmin Date: Thu, 1 Aug 2019 21:35:53 +0800 Subject: [PATCH] reset unrelated file --- ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m | 20 ++++++--- ios/sdk/compile_commands.json | 1 - package-lock.json | 41 ++++++++++++++----- 3 files changed, 44 insertions(+), 18 deletions(-) delete mode 100644 ios/sdk/compile_commands.json diff --git a/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m b/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m index b01c26379d..4781615821 100644 --- a/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m +++ b/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m @@ -141,8 +141,6 @@ - (instancetype)initWithRenderType:(NSString*)renderType _performance = [[WXPerformance alloc] init]; _apmInstance = [[WXApmForInstance alloc] init]; - [_apmInstance setProperty:KEY_PAGE_PROPERTIES_UIKIT_TYPE withValue:_renderType?: WEEX_RENDER_TYPE_PLATFORM]; - _defaultDataRender = NO; _useBackupJsThread = NO; @@ -391,14 +389,19 @@ - (void)_renderWithData:(NSData *)contents //some case , with out render (url) [self.apmInstance startRecord:self.instanceId]; self.apmInstance.isStartRender = YES; + + [_apmInstance setProperty:KEY_PAGE_PROPERTIES_UIKIT_TYPE withValue:_renderType?: WEEX_RENDER_TYPE_PLATFORM]; if (self.dataRender) { [self.apmInstance setProperty:KEY_PAGE_PROPERTIES_RENDER_TYPE withValue:@"eagle"]; } self.performance.renderTimeOrigin = CACurrentMediaTime()*1000; - [WXCoreBridge setPageArgument:_instanceId key:@"renderTimeOrigin" value:[NSString stringWithFormat:@"%lld", (long long)([[NSDate date] timeIntervalSince1970] * 1000)]]; self.performance.renderUnixTimeOrigin = [WXUtility getUnixFixTimeMillis]; - [self.apmInstance onStage:KEY_PAGE_STAGES_RENDER_ORGIGIN]; + long renderOriginTimePlatform = [self.apmInstance onStage:KEY_PAGE_STAGES_RENDER_ORGIGIN]; + + // pass render origin time to page + [WXCoreBridge setPageArgument:_instanceId key:@"renderTimeOrigin" value:[NSString stringWithFormat:@"%lld", (long long)([[NSDate date] timeIntervalSince1970] * 1000)]]; + [WXCoreBridge setPageArgument:_instanceId key:@"renderTimeOriginPlatform" value:[NSString stringWithFormat:@"%lld", (long long)renderOriginTimePlatform]]; if (![WXUtility isBlankString:self.pageName]) { WXLog(@"Start rendering page:%@", self.pageName); @@ -474,14 +477,19 @@ - (void)_renderWithMainBundleString:(NSString *)mainBundleString [self _checkPageName]; [self.apmInstance startRecord:self.instanceId]; self.apmInstance.isStartRender = YES; + + [_apmInstance setProperty:KEY_PAGE_PROPERTIES_UIKIT_TYPE withValue:_renderType?: WEEX_RENDER_TYPE_PLATFORM]; if (self.dataRender) { [self.apmInstance setProperty:KEY_PAGE_PROPERTIES_RENDER_TYPE withValue:@"eagle"]; } self.performance.renderTimeOrigin = CACurrentMediaTime()*1000; - [WXCoreBridge setPageArgument:_instanceId key:@"renderTimeOrigin" value:[NSString stringWithFormat:@"%lld", (long long)([[NSDate date] timeIntervalSince1970] * 1000)]]; self.performance.renderUnixTimeOrigin = [WXUtility getUnixFixTimeMillis]; - [self.apmInstance onStage:KEY_PAGE_STAGES_RENDER_ORGIGIN]; + long renderOriginTimePlatform = [self.apmInstance onStage:KEY_PAGE_STAGES_RENDER_ORGIGIN]; + + // pass render origin time to page + [WXCoreBridge setPageArgument:_instanceId key:@"renderTimeOrigin" value:[NSString stringWithFormat:@"%lld", (long long)([[NSDate date] timeIntervalSince1970] * 1000)]]; + [WXCoreBridge setPageArgument:_instanceId key:@"renderTimeOriginPlatform" value:[NSString stringWithFormat:@"%lld", (long long)renderOriginTimePlatform]]; if (![WXUtility isBlankString:self.pageName]) { WXLog(@"Start rendering page:%@", self.pageName); diff --git a/ios/sdk/compile_commands.json b/ios/sdk/compile_commands.json deleted file mode 100644 index 6adf33b346..0000000000 --- a/ios/sdk/compile_commands.json +++ /dev/null @@ -1 +0,0 @@ -[{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5644704975682993468/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/wson_util.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/wson_util.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/wson/wson_util.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/wson_util.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/wson/wson_util.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/10592133047540570359/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/wson_parser.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/wson_parser.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/wson/wson_parser.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/wson_parser.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/wson/wson_parser.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/10592133047540570359/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/style.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/style.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout/style.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/style.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout/style.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_text.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_text.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_text.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_text.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_text.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -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 -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/wson.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/wson.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/wson/wson.c -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/wson.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/wson/wson.c","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_target.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_target.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/target/render_target.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_target.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/target/render_target.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_scroller.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_scroller.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_scroller.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_scroller.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_scroller.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_performance.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_performance.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/moniter/render_performance.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_performance.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/moniter/render_performance.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_page_custom.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_page_custom.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/page/render_page_custom.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_page_custom.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/page/render_page_custom.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_page_base.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_page_base.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/page/render_page_base.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_page_base.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/page/render_page_base.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_page.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_page.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/page/render_page.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_page.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/page/render_page.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_object.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_object.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_object.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_object.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_object.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_mask.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_mask.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_mask.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_mask.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_mask.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_manager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_manager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/manager/render_manager.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_manager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/manager/render_manager.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_list.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_list.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_list.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_list.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_list.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_creator.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_creator.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/factory/render_creator.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_creator.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/factory/render_creator.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_appbar.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_appbar.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_appbar.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_appbar.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_appbar.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_update_style.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_update_style.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_update_style.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_update_style.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_update_style.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_update_attr.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_update_attr.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_update_attr.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_update_attr.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_update_attr.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_trigger_vsync.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_trigger_vsync.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_trigger_vsync.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_trigger_vsync.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_trigger_vsync.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_render_success.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_render_success.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_render_success.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_render_success.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_render_success.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_remove_event.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_remove_event.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_remove_event.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_remove_event.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_remove_event.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_remove_element.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_remove_element.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_remove_element.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_remove_element.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_remove_element.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_move_element.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_move_element.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_move_element.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_move_element.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_move_element.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_layout.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_layout.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_layout.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_layout.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_layout.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_createfinish.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_createfinish.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_createfinish.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_createfinish.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_createfinish.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_createbody.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_createbody.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_createbody.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_createbody.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_createbody.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_appendtree_createfinish.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_appendtree_createfinish.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_appendtree_createfinish.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_appendtree_createfinish.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_appendtree_createfinish.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_add_event.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_add_event.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_add_event.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_add_event.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_add_event.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_add_element.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_add_element.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_add_element.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/render_action_add_element.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_add_element.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/log_utils.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/log_utils.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/base/utils/log_utils.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/log_utils.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/base/utils/log_utils.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/log_defines.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/log_defines.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/base/log_defines.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/log_defines.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/base/log_defines.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/layout.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/layout.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout/layout.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/layout.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout/layout.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/json11.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/json11.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/third_party/json11/json11.cc -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/json11.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/third_party/json11/json11.cc","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/http_module.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/http_module.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/network/http_module.cc -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/http_module.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/network/http_module.cc","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/eagle_bridge.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/eagle_bridge.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/bridge/eagle_bridge.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/eagle_bridge.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/bridge/eagle_bridge.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/dom_wson.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/dom_wson.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/parser/dom_wson.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/dom_wson.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/parser/dom_wson.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/default_request_handler.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/default_request_handler.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/network/ios/default_request_handler.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/default_request_handler.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/network/ios/default_request_handler.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/css_value_getter.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/css_value_getter.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/css/css_value_getter.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/css_value_getter.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/css/css_value_getter.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/core_side_in_script.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/core_side_in_script.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/bridge/script/core_side_in_script.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/core_side_in_script.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/bridge/script/core_side_in_script.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/core_side_in_platform.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/core_side_in_platform.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/bridge/platform/core_side_in_platform.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/core_side_in_platform.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/bridge/platform/core_side_in_platform.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/core_environment.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/core_environment.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/config/core_environment.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/core_environment.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/config/core_environment.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWebViewModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWebViewModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXWebViewModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWebViewModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXWebViewModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWebSocketModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWebSocketModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXWebSocketModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWebSocketModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXWebSocketModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWebSocketLoader.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWebSocketLoader.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Loader/WXWebSocketLoader.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWebSocketLoader.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Loader/WXWebSocketLoader.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWebComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWebComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXWebComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWebComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXWebComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWeakObjectWrapper.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWeakObjectWrapper.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXWeakObjectWrapper.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXWeakObjectWrapper.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXWeakObjectWrapper.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXVoiceOverModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXVoiceOverModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXVoiceOverModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXVoiceOverModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXVoiceOverModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXView.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXView.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXView.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXView.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXView.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXVideoComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXVideoComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXVideoComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXVideoComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXVideoComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXVersion.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXVersion.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXVersion.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXVersion.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXVersion.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXUtility.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXUtility.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXUtility.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXUtility.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXUtility.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXURLRewriteDefaultImpl.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXURLRewriteDefaultImpl.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Handler/WXURLRewriteDefaultImpl.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXURLRewriteDefaultImpl.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Handler/WXURLRewriteDefaultImpl.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTransition.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTransition.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXTransition.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTransition.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXTransition.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTransform.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTransform.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTransform.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTransform.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTransform.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTimerModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTimerModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXTimerModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTimerModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXTimerModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXThreadSafeMutableDictionary.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXThreadSafeMutableDictionary.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXThreadSafeMutableDictionary.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXThreadSafeMutableDictionary.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXThreadSafeMutableDictionary.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXThreadSafeMutableArray.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXThreadSafeMutableArray.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXThreadSafeMutableArray.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXThreadSafeMutableArray.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXThreadSafeMutableArray.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXThreadSafeCounter.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXThreadSafeCounter.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXThreadSafeCounter.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXThreadSafeCounter.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXThreadSafeCounter.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTextInputComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTextInputComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTextInputComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTextInputComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTextInputComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTextComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTextComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTextComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTextComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTextComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTextAreaComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTextAreaComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTextAreaComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXTextAreaComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTextAreaComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSwitchComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSwitchComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXSwitchComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSwitchComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXSwitchComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXStreamModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXStreamModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXStreamModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXStreamModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXStreamModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXStorageModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXStorageModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXStorageModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXStorageModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXStorageModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSliderNeighborComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSliderNeighborComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXSliderNeighborComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSliderNeighborComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXSliderNeighborComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSimulatorShortcutManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSimulatorShortcutManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXSimulatorShortcutManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSimulatorShortcutManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXSimulatorShortcutManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXServiceFactory.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXServiceFactory.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXServiceFactory.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXServiceFactory.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXServiceFactory.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSectionDataController.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSectionDataController.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXSectionDataController.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSectionDataController.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXSectionDataController.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXScrollerComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXScrollerComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXScrollerComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXScrollerComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXScrollerComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXSDKManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXSDKManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKInstance_performance.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKInstance_performance.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance_performance.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKInstance_performance.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance_performance.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKInstance.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKInstance.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKInstance.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKError.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKError.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Engine/WXSDKError.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKError.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Engine/WXSDKError.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKEngine.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKEngine.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Engine/WXSDKEngine.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXSDKEngine.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Engine/WXSDKEngine.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRuleManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRuleManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXRuleManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRuleManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXRuleManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRoundedRect.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRoundedRect.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXRoundedRect.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRoundedRect.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXRoundedRect.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRootViewController.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRootViewController.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Controller/WXRootViewController.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRootViewController.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Controller/WXRootViewController.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRootView.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRootView.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXRootView.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRootView.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXRootView.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRichText.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRichText.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXRichText.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRichText.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXRichText.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXResourceResponse.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXResourceResponse.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Network/WXResourceResponse.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXResourceResponse.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Network/WXResourceResponse.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXResourceRequestHandlerDefaultImpl.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXResourceRequestHandlerDefaultImpl.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Network/WXResourceRequestHandlerDefaultImpl.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXResourceRequestHandlerDefaultImpl.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Network/WXResourceRequestHandlerDefaultImpl.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXResourceRequest.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXResourceRequest.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Network/WXResourceRequest.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXResourceRequest.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Network/WXResourceRequest.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXResourceLoader.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXResourceLoader.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Loader/WXResourceLoader.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXResourceLoader.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Loader/WXResourceLoader.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRefreshComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRefreshComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXRefreshComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRefreshComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXRefreshComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecyclerUpdateController.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecyclerUpdateController.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerUpdateController.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecyclerUpdateController.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerUpdateController.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecyclerDragController.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecyclerDragController.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerDragController.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecyclerDragController.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerDragController.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecyclerDataController.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecyclerDataController.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerDataController.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecyclerDataController.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerDataController.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecyclerComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecyclerComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecyclerComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListUpdateManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListUpdateManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListUpdateManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListUpdateManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListUpdateManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListTemplateManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListTemplateManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListTemplateManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListTemplateManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListTemplateManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListLayout.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListLayout.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListLayout.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListLayout.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListLayout.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListDataManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListDataManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListDataManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListDataManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListDataManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXRecycleListComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXPrerenderManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXPrerenderManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXPrerenderManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXPrerenderManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXPrerenderManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXPolyfillSet.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXPolyfillSet.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXPolyfillSet.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXPolyfillSet.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXPolyfillSet.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXPickerModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXPickerModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXPickerModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXPickerModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXPickerModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXNavigatorModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXNavigatorModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXNavigatorModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXNavigatorModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXNavigatorModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXNavigationDefaultImpl.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXNavigationDefaultImpl.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Handler/WXNavigationDefaultImpl.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXNavigationDefaultImpl.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Handler/WXNavigationDefaultImpl.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXMultiColumnLayout.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXMultiColumnLayout.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXMultiColumnLayout.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXMultiColumnLayout.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXMultiColumnLayout.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXMonitor.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXMonitor.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Monitor/WXMonitor.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXMonitor.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Monitor/WXMonitor.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXModuleMethod.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXModuleMethod.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXModuleMethod.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXModuleMethod.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXModuleMethod.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXModuleFactory.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXModuleFactory.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXModuleFactory.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXModuleFactory.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXModuleFactory.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXModalUIModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXModalUIModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXModalUIModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXModalUIModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXModalUIModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXMetaModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXMetaModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXMetaModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXMetaModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXMetaModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLog.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLog.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXLog.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLog.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXLog.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLocaleModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLocaleModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXLocaleModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLocaleModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXLocaleModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLoadingIndicator.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLoadingIndicator.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXLoadingIndicator.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLoadingIndicator.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXLoadingIndicator.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLoadingComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLoadingComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXLoadingComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLoadingComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXLoadingComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXListComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXListComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXListComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXListComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXListComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLength.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLength.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXLength.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLength.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXLength.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLayer.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLayer.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXLayer.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXLayer.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXLayer.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXJSFrameworkLoadDefaultImpl.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXJSFrameworkLoadDefaultImpl.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Handler/WXJSFrameworkLoadDefaultImpl.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXJSFrameworkLoadDefaultImpl.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Handler/WXJSFrameworkLoadDefaultImpl.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXJSExceptionInfo.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXJSExceptionInfo.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXJSExceptionInfo.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXJSExceptionInfo.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXJSExceptionInfo.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXJSCoreBridge.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXJSCoreBridge.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXJSCoreBridge.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXJSCoreBridge.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXJSCoreBridge.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXJSASTParser.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXJSASTParser.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXJSASTParser.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXJSASTParser.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXJSASTParser.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXInvocationConfig.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXInvocationConfig.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXInvocationConfig.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXInvocationConfig.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXInvocationConfig.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXInstanceWrap.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXInstanceWrap.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXInstanceWrap.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXInstanceWrap.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXInstanceWrap.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXInnerLayer.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXInnerLayer.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXInnerLayer.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXInnerLayer.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXInnerLayer.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXIndicatorComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXIndicatorComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXIndicatorComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXIndicatorComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXIndicatorComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXImageComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXImageComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXImageComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXImageComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXImageComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXHeaderComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXHeaderComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXHeaderComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXHeaderComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXHeaderComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXHandlerFactory.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXHandlerFactory.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXHandlerFactory.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXHandlerFactory.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXHandlerFactory.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXGlobalEventModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXGlobalEventModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXGlobalEventModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXGlobalEventModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXGlobalEventModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXFooterComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXFooterComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXFooterComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXFooterComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXFooterComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXExtendCallNativeManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXExtendCallNativeManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXExtendCallNativeManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXExtendCallNativeManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXExtendCallNativeManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXExceptionUtils.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXExceptionUtils.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Monitor/WXExceptionUtils.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXExceptionUtils.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Monitor/WXExceptionUtils.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXErrorView.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXErrorView.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXErrorView.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXErrorView.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXErrorView.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXEmbedComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXEmbedComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXEmbedComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXEmbedComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXEmbedComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXEditComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXEditComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXEditComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXEditComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXEditComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDomModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDomModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXDomModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDomModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXDomModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDivComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDivComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXDivComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDivComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXDivComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDisplayQueue.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDisplayQueue.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXDisplayQueue.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDisplayQueue.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXDisplayQueue.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDisplayLinkManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDisplayLinkManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXDisplayLinkManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDisplayLinkManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXDisplayLinkManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDiffUtil.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDiffUtil.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXDiffUtil.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDiffUtil.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXDiffUtil.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDebugTool.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDebugTool.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Debug/WXDebugTool.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDebugTool.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Debug/WXDebugTool.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDatePickerManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDatePickerManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXDatePickerManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXDatePickerManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXDatePickerManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCycleSliderComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCycleSliderComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXCycleSliderComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCycleSliderComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXCycleSliderComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCoreBridge.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCoreBridge.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXCoreBridge.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCoreBridge.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXCoreBridge.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXConvertUtility.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXConvertUtility.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXConvertUtility.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXConvertUtility.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXConvertUtility.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXConvert.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXConvert.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXConvert.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXConvert.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXConvert.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXConsoleLogModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXConsoleLogModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXConsoleLogModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXConsoleLogModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXConsoleLogModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponentMethod.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponentMethod.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXComponentMethod.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponentMethod.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXComponentMethod.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponentManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponentManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXComponentManager.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponentManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXComponentManager.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponentFactory.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponentFactory.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXComponentFactory.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponentFactory.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXComponentFactory.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+ViewManagement.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+ViewManagement.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXComponent+ViewManagement.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+ViewManagement.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXComponent+ViewManagement.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+PseudoClassManagement.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+PseudoClassManagement.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXComponent+PseudoClassManagement.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+PseudoClassManagement.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXComponent+PseudoClassManagement.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+Navigation.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+Navigation.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXComponent+Navigation.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+Navigation.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXComponent+Navigation.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+Layout.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+Layout.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Layout/WXComponent+Layout.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+Layout.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Layout/WXComponent+Layout.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+Events.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+Events.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Events/WXComponent+Events.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+Events.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Events/WXComponent+Events.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+Display.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+Display.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXComponent+Display.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+Display.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXComponent+Display.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+DataBinding.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+DataBinding.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXComponent+DataBinding.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+DataBinding.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXComponent+DataBinding.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+BoxShadow.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+BoxShadow.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXComponent+BoxShadow.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXComponent+BoxShadow.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXComponent+BoxShadow.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXClipboardModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXClipboardModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXClipboardModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXClipboardModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXClipboardModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCellSlotComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCellSlotComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXCellSlotComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCellSlotComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXCellSlotComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCellComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCellComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXCellComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCellComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXCellComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCanvasModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCanvasModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXCanvasModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCanvasModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXCanvasModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCanvasComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCanvasComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXCanvasComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCanvasComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXCanvasComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCallJSMethod.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCallJSMethod.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXCallJSMethod.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXCallJSMethod.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXCallJSMethod.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBridgeMethod.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBridgeMethod.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXBridgeMethod.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBridgeMethod.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXBridgeMethod.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBridgeManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBridgeManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXBridgeManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBridgeManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXBridgeManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBridgeContext.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBridgeContext.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXBridgeContext.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBridgeContext.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXBridgeContext.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBoxShadow.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBoxShadow.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXBoxShadow.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBoxShadow.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXBoxShadow.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBaseViewController.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBaseViewController.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Controller/WXBaseViewController.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXBaseViewController.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Controller/WXBaseViewController.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAssert.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAssert.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXAssert.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAssert.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXAssert.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAppConfiguration.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAppConfiguration.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXAppConfiguration.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAppConfiguration.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXAppConfiguration.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXApmForInstance.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXApmForInstance.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Performance/WXApmForInstance.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXApmForInstance.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Performance/WXApmForInstance.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAnimationModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAnimationModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXAnimationModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAnimationModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXAnimationModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAnalyzerCenter.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAnalyzerCenter.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Monitor/WXAnalyzerCenter.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAnalyzerCenter.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Monitor/WXAnalyzerCenter.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXAComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/WXAComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXAComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/UIBezierPath+Weex.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/UIBezierPath+Weex.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/UIBezierPath+Weex.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/UIBezierPath+Weex.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/UIBezierPath+Weex.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/NSTimer+Weex.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/NSTimer+Weex.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/NSTimer+Weex.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/NSTimer+Weex.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/NSTimer+Weex.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/NSObject+WXSwizzle.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/NSObject+WXSwizzle.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/NSObject+WXSwizzle.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/NSObject+WXSwizzle.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/NSObject+WXSwizzle.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/NSArray+Weex.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/NSArray+Weex.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/NSArray+Weex.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/NSArray+Weex.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/NSArray+Weex.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/JsonRenderManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/JsonRenderManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/json/JsonRenderManager.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/JsonRenderManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/json/JsonRenderManager.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/JsonPage.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/JsonPage.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/json/JsonPage.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/JsonPage.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/json/JsonPage.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/JSValue+Weex.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/JSValue+Weex.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/JSValue+Weex.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/JSValue+Weex.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/JSValue+Weex.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/9395195860879944562/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/armv7 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/JSContext+Weex.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/JSContext+Weex.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/JSContext+Weex.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/armv7/JSContext+Weex.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/JSContext+Weex.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/8339668492362053187/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/wson_util.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/wson_util.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/wson/wson_util.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/wson_util.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/wson/wson_util.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/wson_parser.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/wson_parser.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/wson/wson_parser.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/wson_parser.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/wson/wson_parser.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/style.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/style.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout/style.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/style.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout/style.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -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 -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/wson.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/wson.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/wson/wson.c -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/wson.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/wson/wson.c","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_text.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_text.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_text.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_text.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_text.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_target.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_target.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/target/render_target.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_target.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/target/render_target.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_scroller.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_scroller.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_scroller.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_scroller.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_scroller.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_performance.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_performance.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/moniter/render_performance.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_performance.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/moniter/render_performance.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_page_custom.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_page_custom.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/page/render_page_custom.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_page_custom.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/page/render_page_custom.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_page_base.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_page_base.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/page/render_page_base.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_page_base.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/page/render_page_base.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_page.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_page.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/page/render_page.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_page.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/page/render_page.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_object.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_object.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_object.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_object.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_object.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_mask.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_mask.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_mask.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_mask.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_mask.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_manager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_manager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/manager/render_manager.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_manager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/manager/render_manager.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_list.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_list.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_list.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_list.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_list.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_creator.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_creator.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/factory/render_creator.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_creator.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/factory/render_creator.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_appbar.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_appbar.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_appbar.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_appbar.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/node/render_appbar.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_update_style.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_update_style.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_update_style.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_update_style.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_update_style.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_update_attr.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_update_attr.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_update_attr.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_update_attr.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_update_attr.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_trigger_vsync.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_trigger_vsync.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_trigger_vsync.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_trigger_vsync.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_trigger_vsync.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_render_success.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_render_success.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_render_success.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_render_success.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_render_success.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_remove_event.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_remove_event.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_remove_event.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_remove_event.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_remove_event.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_remove_element.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_remove_element.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_remove_element.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_remove_element.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_remove_element.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_move_element.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_move_element.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_move_element.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_move_element.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_move_element.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_layout.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_layout.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_layout.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_layout.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_layout.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_createfinish.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_createfinish.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_createfinish.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_createfinish.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_createfinish.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_createbody.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_createbody.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_createbody.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_createbody.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_createbody.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_appendtree_createfinish.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_appendtree_createfinish.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_appendtree_createfinish.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_appendtree_createfinish.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_appendtree_createfinish.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_add_event.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_add_event.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_add_event.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_add_event.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_add_event.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_add_element.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_add_element.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_add_element.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/render_action_add_element.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/render/action/render_action_add_element.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/log_utils.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/log_utils.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/base/utils/log_utils.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/log_utils.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/base/utils/log_utils.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/log_defines.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/log_defines.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/base/log_defines.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/log_defines.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/base/log_defines.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/layout.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/layout.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout/layout.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/layout.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout/layout.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/json11.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/json11.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/third_party/json11/json11.cc -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/json11.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/third_party/json11/json11.cc","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/http_module.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/http_module.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/network/http_module.cc -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/http_module.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/network/http_module.cc","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/eagle_bridge.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/eagle_bridge.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/bridge/eagle_bridge.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/eagle_bridge.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/bridge/eagle_bridge.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/dom_wson.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/dom_wson.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/parser/dom_wson.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/dom_wson.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/parser/dom_wson.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/default_request_handler.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/default_request_handler.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/network/ios/default_request_handler.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/default_request_handler.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/network/ios/default_request_handler.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/css_value_getter.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/css_value_getter.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/css/css_value_getter.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/css_value_getter.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/css/css_value_getter.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/core_side_in_script.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/core_side_in_script.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/bridge/script/core_side_in_script.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/core_side_in_script.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/bridge/script/core_side_in_script.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/core_side_in_platform.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/core_side_in_platform.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/bridge/platform/core_side_in_platform.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/core_side_in_platform.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/bridge/platform/core_side_in_platform.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/core_environment.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/core_environment.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/config/core_environment.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/core_environment.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/config/core_environment.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWebViewModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWebViewModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXWebViewModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWebViewModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXWebViewModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWebSocketModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWebSocketModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXWebSocketModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWebSocketModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXWebSocketModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWebSocketLoader.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWebSocketLoader.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Loader/WXWebSocketLoader.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWebSocketLoader.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Loader/WXWebSocketLoader.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWebComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWebComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXWebComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWebComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXWebComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWeakObjectWrapper.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWeakObjectWrapper.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXWeakObjectWrapper.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXWeakObjectWrapper.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXWeakObjectWrapper.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXVoiceOverModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXVoiceOverModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXVoiceOverModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXVoiceOverModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXVoiceOverModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXView.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXView.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXView.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXView.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXView.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXVideoComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXVideoComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXVideoComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXVideoComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXVideoComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXVersion.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXVersion.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXVersion.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXVersion.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXVersion.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXUtility.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXUtility.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXUtility.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXUtility.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXUtility.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXURLRewriteDefaultImpl.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXURLRewriteDefaultImpl.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Handler/WXURLRewriteDefaultImpl.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXURLRewriteDefaultImpl.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Handler/WXURLRewriteDefaultImpl.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTransition.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTransition.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXTransition.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTransition.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXTransition.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTransform.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTransform.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTransform.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTransform.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTransform.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTimerModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTimerModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXTimerModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTimerModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXTimerModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXThreadSafeMutableDictionary.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXThreadSafeMutableDictionary.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXThreadSafeMutableDictionary.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXThreadSafeMutableDictionary.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXThreadSafeMutableDictionary.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXThreadSafeMutableArray.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXThreadSafeMutableArray.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXThreadSafeMutableArray.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXThreadSafeMutableArray.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXThreadSafeMutableArray.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXThreadSafeCounter.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXThreadSafeCounter.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXThreadSafeCounter.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXThreadSafeCounter.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXThreadSafeCounter.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTextInputComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTextInputComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTextInputComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTextInputComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTextInputComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTextComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTextComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTextComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTextComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTextComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTextAreaComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTextAreaComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTextAreaComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXTextAreaComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXTextAreaComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSwitchComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSwitchComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXSwitchComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSwitchComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXSwitchComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXStreamModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXStreamModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXStreamModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXStreamModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXStreamModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXStorageModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXStorageModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXStorageModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXStorageModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXStorageModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSliderNeighborComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSliderNeighborComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXSliderNeighborComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSliderNeighborComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXSliderNeighborComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSimulatorShortcutManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSimulatorShortcutManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXSimulatorShortcutManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSimulatorShortcutManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXSimulatorShortcutManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXServiceFactory.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXServiceFactory.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXServiceFactory.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXServiceFactory.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXServiceFactory.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSectionDataController.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSectionDataController.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXSectionDataController.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSectionDataController.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXSectionDataController.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXScrollerComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXScrollerComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXScrollerComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXScrollerComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXScrollerComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXSDKManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXSDKManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKInstance_performance.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKInstance_performance.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance_performance.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKInstance_performance.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance_performance.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKInstance.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKInstance.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKInstance.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKError.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKError.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Engine/WXSDKError.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKError.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Engine/WXSDKError.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKEngine.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKEngine.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Engine/WXSDKEngine.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXSDKEngine.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Engine/WXSDKEngine.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRuleManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRuleManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXRuleManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRuleManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXRuleManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRoundedRect.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRoundedRect.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXRoundedRect.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRoundedRect.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXRoundedRect.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRootViewController.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRootViewController.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Controller/WXRootViewController.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRootViewController.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Controller/WXRootViewController.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRootView.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRootView.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXRootView.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRootView.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXRootView.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRichText.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRichText.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXRichText.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRichText.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXRichText.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXResourceResponse.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXResourceResponse.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Network/WXResourceResponse.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXResourceResponse.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Network/WXResourceResponse.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXResourceRequestHandlerDefaultImpl.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXResourceRequestHandlerDefaultImpl.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Network/WXResourceRequestHandlerDefaultImpl.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXResourceRequestHandlerDefaultImpl.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Network/WXResourceRequestHandlerDefaultImpl.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXResourceRequest.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXResourceRequest.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Network/WXResourceRequest.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXResourceRequest.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Network/WXResourceRequest.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXResourceLoader.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXResourceLoader.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Loader/WXResourceLoader.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXResourceLoader.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Loader/WXResourceLoader.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRefreshComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRefreshComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXRefreshComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRefreshComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXRefreshComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecyclerUpdateController.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecyclerUpdateController.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerUpdateController.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecyclerUpdateController.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerUpdateController.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecyclerDragController.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecyclerDragController.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerDragController.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecyclerDragController.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerDragController.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecyclerDataController.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecyclerDataController.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerDataController.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecyclerDataController.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerDataController.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecyclerComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecyclerComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecyclerComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListUpdateManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListUpdateManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListUpdateManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListUpdateManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListUpdateManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListTemplateManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListTemplateManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListTemplateManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListTemplateManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListTemplateManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListLayout.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListLayout.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListLayout.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListLayout.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListLayout.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListDataManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListDataManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListDataManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListDataManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListDataManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXRecycleListComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXPrerenderManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXPrerenderManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXPrerenderManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXPrerenderManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXPrerenderManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXPolyfillSet.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXPolyfillSet.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXPolyfillSet.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXPolyfillSet.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXPolyfillSet.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXPickerModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXPickerModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXPickerModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXPickerModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXPickerModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXNavigatorModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXNavigatorModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXNavigatorModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXNavigatorModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXNavigatorModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXNavigationDefaultImpl.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXNavigationDefaultImpl.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Handler/WXNavigationDefaultImpl.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXNavigationDefaultImpl.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Handler/WXNavigationDefaultImpl.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXMultiColumnLayout.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXMultiColumnLayout.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXMultiColumnLayout.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXMultiColumnLayout.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/Recycler/WXMultiColumnLayout.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXMonitor.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXMonitor.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Monitor/WXMonitor.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXMonitor.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Monitor/WXMonitor.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXModuleMethod.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXModuleMethod.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXModuleMethod.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXModuleMethod.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXModuleMethod.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXModuleFactory.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXModuleFactory.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXModuleFactory.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXModuleFactory.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXModuleFactory.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXModalUIModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXModalUIModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXModalUIModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXModalUIModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXModalUIModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXMetaModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXMetaModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXMetaModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXMetaModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXMetaModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLog.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLog.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXLog.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLog.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXLog.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLocaleModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLocaleModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXLocaleModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLocaleModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXLocaleModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLoadingIndicator.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLoadingIndicator.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXLoadingIndicator.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLoadingIndicator.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXLoadingIndicator.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLoadingComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLoadingComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXLoadingComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLoadingComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXLoadingComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXListComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXListComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXListComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXListComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXListComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLength.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLength.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXLength.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLength.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXLength.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLayer.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLayer.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXLayer.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXLayer.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXLayer.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXJSFrameworkLoadDefaultImpl.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXJSFrameworkLoadDefaultImpl.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Handler/WXJSFrameworkLoadDefaultImpl.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXJSFrameworkLoadDefaultImpl.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Handler/WXJSFrameworkLoadDefaultImpl.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXJSExceptionInfo.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXJSExceptionInfo.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXJSExceptionInfo.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXJSExceptionInfo.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXJSExceptionInfo.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXJSCoreBridge.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXJSCoreBridge.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXJSCoreBridge.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXJSCoreBridge.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXJSCoreBridge.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXJSASTParser.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXJSASTParser.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXJSASTParser.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXJSASTParser.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXJSASTParser.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXInvocationConfig.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXInvocationConfig.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXInvocationConfig.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXInvocationConfig.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXInvocationConfig.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXInstanceWrap.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXInstanceWrap.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXInstanceWrap.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXInstanceWrap.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXInstanceWrap.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXInnerLayer.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXInnerLayer.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXInnerLayer.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXInnerLayer.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXInnerLayer.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXIndicatorComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXIndicatorComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXIndicatorComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXIndicatorComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXIndicatorComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXImageComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXImageComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXImageComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXImageComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXImageComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXHeaderComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXHeaderComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXHeaderComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXHeaderComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXHeaderComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXHandlerFactory.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXHandlerFactory.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXHandlerFactory.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXHandlerFactory.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXHandlerFactory.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXGlobalEventModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXGlobalEventModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXGlobalEventModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXGlobalEventModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXGlobalEventModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXFooterComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXFooterComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXFooterComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXFooterComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXFooterComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXExtendCallNativeManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXExtendCallNativeManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXExtendCallNativeManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXExtendCallNativeManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXExtendCallNativeManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXExceptionUtils.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXExceptionUtils.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Monitor/WXExceptionUtils.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXExceptionUtils.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Monitor/WXExceptionUtils.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXErrorView.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXErrorView.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXErrorView.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXErrorView.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXErrorView.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXEmbedComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXEmbedComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXEmbedComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXEmbedComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXEmbedComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXEditComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXEditComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXEditComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXEditComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXEditComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDomModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDomModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXDomModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDomModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXDomModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDivComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDivComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXDivComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDivComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXDivComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDisplayQueue.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDisplayQueue.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXDisplayQueue.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDisplayQueue.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXDisplayQueue.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDisplayLinkManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDisplayLinkManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXDisplayLinkManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDisplayLinkManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXDisplayLinkManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDiffUtil.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDiffUtil.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXDiffUtil.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDiffUtil.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXDiffUtil.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDebugTool.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDebugTool.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Debug/WXDebugTool.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDebugTool.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Debug/WXDebugTool.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDatePickerManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDatePickerManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXDatePickerManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXDatePickerManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXDatePickerManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCycleSliderComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCycleSliderComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXCycleSliderComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCycleSliderComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXCycleSliderComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCoreBridge.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCoreBridge.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXCoreBridge.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCoreBridge.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXCoreBridge.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXConvertUtility.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXConvertUtility.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXConvertUtility.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXConvertUtility.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXConvertUtility.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXConvert.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXConvert.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXConvert.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXConvert.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXConvert.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXConsoleLogModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXConsoleLogModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXConsoleLogModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXConsoleLogModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXConsoleLogModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponentMethod.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponentMethod.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXComponentMethod.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponentMethod.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXComponentMethod.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponentManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponentManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXComponentManager.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponentManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXComponentManager.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponentFactory.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponentFactory.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXComponentFactory.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponentFactory.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXComponentFactory.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+ViewManagement.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+ViewManagement.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXComponent+ViewManagement.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+ViewManagement.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXComponent+ViewManagement.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+PseudoClassManagement.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+PseudoClassManagement.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXComponent+PseudoClassManagement.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+PseudoClassManagement.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/View/WXComponent+PseudoClassManagement.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+Navigation.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+Navigation.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXComponent+Navigation.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+Navigation.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Model/WXComponent+Navigation.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+Layout.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+Layout.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Layout/WXComponent+Layout.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+Layout.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Layout/WXComponent+Layout.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+Events.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+Events.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Events/WXComponent+Events.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+Events.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Events/WXComponent+Events.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+Display.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+Display.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXComponent+Display.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+Display.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXComponent+Display.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+DataBinding.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+DataBinding.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXComponent+DataBinding.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+DataBinding.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXComponent+DataBinding.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+BoxShadow.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+BoxShadow.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXComponent+BoxShadow.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXComponent+BoxShadow.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/WXComponent+BoxShadow.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXClipboardModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXClipboardModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXClipboardModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXClipboardModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXClipboardModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCellSlotComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCellSlotComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXCellSlotComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCellSlotComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXCellSlotComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCellComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCellComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXCellComponent.mm -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCellComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXCellComponent.mm","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCanvasModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCanvasModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXCanvasModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCanvasModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXCanvasModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCanvasComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCanvasComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXCanvasComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCanvasComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXCanvasComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCallJSMethod.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCallJSMethod.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXCallJSMethod.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXCallJSMethod.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXCallJSMethod.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBridgeMethod.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBridgeMethod.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXBridgeMethod.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBridgeMethod.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXBridgeMethod.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBridgeManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBridgeManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXBridgeManager.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBridgeManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Manager/WXBridgeManager.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBridgeContext.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBridgeContext.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXBridgeContext.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBridgeContext.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/WXBridgeContext.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBoxShadow.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBoxShadow.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXBoxShadow.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBoxShadow.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXBoxShadow.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBaseViewController.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBaseViewController.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Controller/WXBaseViewController.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXBaseViewController.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Controller/WXBaseViewController.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAssert.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAssert.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXAssert.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAssert.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXAssert.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAppConfiguration.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAppConfiguration.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXAppConfiguration.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAppConfiguration.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/WXAppConfiguration.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXApmForInstance.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXApmForInstance.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Performance/WXApmForInstance.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXApmForInstance.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Performance/WXApmForInstance.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAnimationModule.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAnimationModule.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXAnimationModule.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAnimationModule.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Module/WXAnimationModule.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAnalyzerCenter.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAnalyzerCenter.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Monitor/WXAnalyzerCenter.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAnalyzerCenter.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Monitor/WXAnalyzerCenter.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAComponent.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAComponent.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXAComponent.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/WXAComponent.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Component/WXAComponent.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/UIBezierPath+Weex.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/UIBezierPath+Weex.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/UIBezierPath+Weex.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/UIBezierPath+Weex.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Display/UIBezierPath+Weex.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/NSTimer+Weex.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/NSTimer+Weex.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/NSTimer+Weex.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/NSTimer+Weex.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/NSTimer+Weex.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/NSObject+WXSwizzle.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/NSObject+WXSwizzle.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/NSObject+WXSwizzle.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/NSObject+WXSwizzle.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/NSObject+WXSwizzle.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/NSArray+Weex.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/NSArray+Weex.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/NSArray+Weex.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/NSArray+Weex.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Utility/NSArray+Weex.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/JsonRenderManager.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/JsonRenderManager.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/json/JsonRenderManager.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/JsonRenderManager.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/json/JsonRenderManager.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu++14 -stdlib=libc++ -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DOS_IOS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=9.0 -g -fvisibility-inlines-hidden -Wno-sign-conversion -Winfinite-recursion -Wmove -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/JsonPage.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/JsonPage.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/json/JsonPage.cpp -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/JsonPage.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/json/JsonPage.cpp","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/JSValue+Weex.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/JSValue+Weex.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/JSValue+Weex.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/JSValue+Weex.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/JSValue+Weex.m","directory":"/"},{"command":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DOS_IOS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -miphoneos-version-min=9.0 -g -Wno-sign-conversion -Winfinite-recursion -Wno-comma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -F/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos -fembed-bitcode -Wno-unused-command-line-argument -isystem -isystem -include /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Supporting\\ Files/WeexSDK-Prefix.pch -MD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/SharedPrecompiledHeaders/SharedPrecompiledHeaders/5917356111183893357/WeexSDK-Prefix.pch.d -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-generated-files.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-own-target-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-all-target-headers.hmap -iquote /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/WeexSDK-project-headers.hmap -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/Release-iphoneos/include -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Dependency -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/weex_core/Source/core/layout -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources-normal/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources/arm64 -I/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/DerivedSources -MMD -MT dependencies -MF /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/JSContext+Weex.d --serialize-diagnostics /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/JSContext+Weex.dia -c /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/JSContext+Weex.m -o /Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/build/WeexSDK.build/Release-iphoneos/WeexSDK.build/Objects-normal/arm64/JSContext+Weex.o","file":"/Users/wangrenmin/Desktop/Weex/fork-incubator/incubator-weex/ios/sdk/WeexSDK/Sources/Bridge/JSContext+Weex.m","directory":"/"}] \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index a16a0f3be7..211b6b4c74 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3778,7 +3778,8 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true + "dev": true, + "optional": true }, "aproba": { "version": "1.2.0", @@ -3802,13 +3803,15 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true + "dev": true, + "optional": true }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, + "optional": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -3825,19 +3828,22 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "dev": true + "dev": true, + "optional": true }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true + "dev": true, + "optional": true }, "console-control-strings": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "dev": true + "dev": true, + "optional": true }, "core-util-is": { "version": "1.0.2", @@ -3968,7 +3974,8 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true + "dev": true, + "optional": true }, "ini": { "version": "1.3.5", @@ -3982,6 +3989,7 @@ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", "dev": true, + "optional": true, "requires": { "number-is-nan": "^1.0.0" } @@ -3998,6 +4006,7 @@ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "dev": true, + "optional": true, "requires": { "brace-expansion": "^1.1.7" } @@ -4006,13 +4015,15 @@ "version": "0.0.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", - "dev": true + "dev": true, + "optional": true }, "minipass": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.2.4.tgz", "integrity": "sha512-hzXIWWet/BzWhYs2b+u7dRHlruXhwdgvlTMDKC6Cb1U7ps6Ac6yQlR39xsbjWJE377YTCtKwIXIpJ5oP+j5y8g==", "dev": true, + "optional": true, "requires": { "safe-buffer": "^5.1.1", "yallist": "^3.0.0" @@ -4033,6 +4044,7 @@ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", "dev": true, + "optional": true, "requires": { "minimist": "0.0.8" } @@ -4121,7 +4133,8 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true + "dev": true, + "optional": true }, "object-assign": { "version": "4.1.1", @@ -4135,6 +4148,7 @@ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "dev": true, + "optional": true, "requires": { "wrappy": "1" } @@ -4230,7 +4244,8 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", - "dev": true + "dev": true, + "optional": true }, "safer-buffer": { "version": "2.1.2", @@ -4272,6 +4287,7 @@ "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", "dev": true, + "optional": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -4293,6 +4309,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, + "optional": true, "requires": { "ansi-regex": "^2.0.0" } @@ -4341,13 +4358,15 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true + "dev": true, + "optional": true }, "yallist": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz", "integrity": "sha1-hFK0u36Dx8GI2AQcGoN8dz1ti7k=", - "dev": true + "dev": true, + "optional": true } } },