Coder Social home page Coder Social logo

sysdataspa / r.objc Goto Github PK

View Code? Open in Web Editor NEW
110.0 9.0 18.0 2.56 MB

Get autocompleted resources like images, localized strings and storyboards in ObjC projects

License: Apache License 2.0

Objective-C 99.20% Ruby 0.80%
objective-c objc ios tvos autocomplete xcode code-generator localization uiimage uistoryboard

r.objc's Introduction

R.objc

Version License Platform

Introduction

Freely inspired by R.swift (Thank you, guys!): get autocompleted localizable strings, asset catalogue images names and storyboard objects.

You can have:

  • Compile time check: no more incorrect strings that make your app crash at runtime

  • Autocompletion: never have to guess that image name again

Installation

CocoaPods is the recommended way of installation, as this avoids including any binary files into your project.

Cocoapods

  1. Add pod 'R.objc' to your Podfile and run pod install

  2. In XCode, click on your project in the Project Navigator

  3. Choose your target under TARGETS, click the Build Phases tab and add a New Run Script Phase by clicking the little plus icon in the top left

  4. Drag the new Run Script phase above the Compile Sources phase, expand it and paste the following script: 

    "${PODS_ROOT}/R.objc/Robjc" -p "$SRCROOT"
    

    (after -p option, you have to specify the root folder of your project, from where to scan your code)

  5. Build your project; in Finder you will now see R.h and R.m files in the $SRCROOT folder: drag them into your project and uncheck Copy items if needed

  6. Repeat point 3 and 4 for every target in your project

Manual

  1. Download latest version from the releases section

  2. Unzip in a folder anywhere you want.

  3. In XCode, click on your project in the Project Navigator

  4. Choose your target under TARGETS, click the Build Phases tab and add a New Run Script Phase by clicking the little plus icon in the top left

  5. Drag the new Run Script phase above the Compile Sources phase, expand it and paste the following script: 

    "<path to the unzipped folder>/Robjc" -p "$SRCROOT"
    

    (we suggest to unzip the folder somewhere within your project folder, in order to use the $SRCROOT shortcut for the path. Don't add anything to your Xcode project, or it won't build anymore) (after -p option, you have to specify the root folder of your project, from where to scan your code)

  6. Build your project; in Finder you will now see R.h and R.m files in the $SRCROOT folder: drag them into your project and uncheck Copy items if needed

  7. Repeat point 3 and 4 for every target in your project

At every build, the generated file will update automatically and there's no need to do anything.

Normally, you would write code like this:

[self.buttonProceed setTitle:NSLocalizedString(@"home_proceed", nil) forState:UIControlStateNormal];
self.welcomeLabel.text = [NSString stringWithFormat:NSLocalizedString(@"home_title_welcome", nil), @"John"]; //"hello %@"
self.radioButtonImageView.image = selected ? [UIImage imageNamed:@"checkedRadioButton"] : [UIImage imageNamed:@"uncheckedRadioButton"];

Now you can write

[self.buttonProceed setTitle:R.string.localizable.homeProceed forState:UIControlStateNormal];
self.welcomeLabel.text = [R.string.localizable homeTitleWelcome:@"John"];
self.radioButtonImageView.image = selected ? R.image.checkedRadioButton : R.image.uncheckedRadioButton;

Available command line options

You can add these options to customize R.objc behaviour:

  • -p (or --path): MANDATORY path to the root of the project or from where you want the scan to begin

  • -e (or --excluded): excluded dir path; all dirs within this path will be excluded; you can use -e option more than once, e.g. -e $(SRCROOT)/Pods -e $(SRCROOT)/Carthage

  • -v (or --verbose): verbose logging

  • -s (or --sysdata): for internal use only

  • -r (or --refactor): R.objc will replace all occurrences of NSLocalizedString with the correct R.string reference

  • --skip-strings: jump the strings step

  • --skip-images: jump the images step

  • --skip-themes: jump the themes step. Use this to avoid Giotto import error

  • --skip-storyboards: jump the storyboards step

  • --skip-segues: jump the segues step

What can you do?

Localizable strings

You can access localized strings with compile time checked keys usign keypath

R.string.localizable.commonWarning

The keypath is composed like this: R.string.<string_file_name>.<string_key>

If you check the documentation of the string (alt+click) you'll see the original key and all the localized values

You can access localized strings containing a string with format, passing directly parameters and obtaining the composed value

[R.string.localizable alertMessage:@"username" value2:4.7];

The methods is named like the key of the localized string with parameter 1 implicit; all other parameters are named value and numbered progressively. Formats in the string are mapped by the objects the represent (eg. %f is mapped as a double, %@ ad an id)

Images

All images will be mapped, those in an asset catalogue and those outside.

You can access by

R.image.navbarLogo

You'll get a UIImage* directly.

Storyboards

All storyboards in the bundle will be mapped in a R.storyboard.<storyboard_name> path. You'll have an

instantiateInitialViewController method and a method to instantiate a view controller for every storyboard identifier found.

Example:

[R.storyboard.main instantiateInitialViewController];
[R.storyboard.main loginViewController];

Segues

Like storyboards, in the segue object you'll find a list of all view controllers which are source of a segue. Starting from them, you can access their segues and get the segue identifier or perform segue passing source and sender objects

Example:

R.segue.myViewController.goToNextSegue.identifier // identifier of the segue
[R.segue.myViewController.goToNextSegue.identifier performWithSource:self sender:userInfo]; // perform segue

Themes

If you are using Giotto Theme Manager, R.objc will search for theme_*.plist files in your project. You can then access to all your constants and styles.

Example:

[R.theme.styles.myStyle applyTo:self]; // apply the style MyStyle to object self
R.theme.constants.COLOR_TEXT_LIGHT // reference to a constant in the theme

Troubleshooting

  1. You may want to exclude Pods and/or Carthage dirs. To do so pass: -e $(SRCROOT)/Pods -e $(SRCROOT)/Carthage

  2. R.h:2:9: Module 'Giotto' not found Add pod 'Giotto' to Podfile or pass --skip-themes parameter.

  3. Duplicate interface definition for class 'R<some-resource-name>' Check in the filesystem if there are more than one resource file with the same name: find <path-project-dir> -iname *<some-resource-name>* Replace with actual resource from Xcode output.

Contribute

We'll love contributions, fell free to fork and submit pull requests for additional generators or optimizations; for any question or idea write to team.mobile[AT]sysdata.it

r.objc's People

Contributors

guidosabatini-sysdata avatar hext123 avatar paoloardia avatar yurikoles avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

r.objc's Issues

Support namespaces in .xcassets

Hey

Currently this script is not supporting namespaces in .xcassets, would be great to have it working.
Swift version handles those properly, allowing duplicated names.

Duplicatating RLaunchScreen

@interface RLaunchScreen: NSObject
- (__kindof UIViewController*)instantiateInitialViewController;
@end


@interface RLaunchScreen: NSObject
- (__kindof UIViewController*)instantiateInitialViewController;
@end


@interface RStoryboards: NSObject
- (RProfile*)profile;
- (RLaunchScreen*)launchScreen;
- (RMain*)main;
- (RLaunchScreen*)launchScreen;
- (RLaunchScreen*)launchScreen;
@end

Similar duplication is in R.m.

Command /bin/sh failed with exit code 134

Hi, I have followed Getting started, but on build I got this error

2018-04-18 13:34:00.371 Robjc[37050:647888] *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSRegularExpression enumerateMatchesInString:options:range:usingBlock:]: Range or index out of bounds'
*** First throw call stack:
(
	0   CoreFoundation                      0x00007fff2c58a32b __exceptionPreprocess + 171
	1   libobjc.A.dylib                     0x00007fff53c04c76 objc_exception_throw + 48
	2   CoreFoundation                      0x00007fff2c61bdcd +[NSException raise:format:] + 205
	3   Foundation                          0x00007fff2e5f8e1b -[NSRegularExpression(NSMatching) enumerateMatchesInString:options:range:usingBlock:] + 347
	4   Foundation                          0x00007fff2e613c04 -[NSRegularExpression(NSMatching) numberOfMatchesInString:options:range:] + 125
	5   Robjc                               0x0000000101916e52 Robjc + 11858
	6   Robjc                               0x0000000101929aa6 Robjc + 88742
	7   Robjc                               0x00000001019284e5 Robjc + 83173
	8   Robjc                               0x0000000101922521 Robjc + 58657
	9   Robjc                               0x0000000101915b0e Robjc + 6926
	10  libdyld.dylib                       0x00007fff5481e015 start + 1
	11  ???                                 0x0000000000000003 0x0 + 3
)
libc++abi.dylib: terminating with uncaught exception of type NSException
/Users/marekpridal/Library/Developer/Xcode/DerivedData/mb-ios-ejcbihhrrggkljeolforsrbhzngg/Build/Intermediates.noindex/mb-ios.build/Debug_DEV-iphonesimulator/mb-ios.build/Script-DF1AA51620876282009865E3.sh: line 2: 37050 Abort trap: 6           "$PODS_ROOT/R.objc/Robjc" -p "$SRCROOT"
Command /bin/sh failed with exit code 134

Get failed when build with R.objc scripting

I install via pod follow instruction, I get stuck when build to generator R file, build error and only get R_temp file. Please help me, thank you.

2018-01-04 14:38:05.422 Robjc[51650:550844] -[__NSCFString addEntriesFromDictionary:]: unrecognized selector sent to instance 0x7f93a2c79e80
2018-01-04 14:38:05.423 Robjc[51650:550844] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFString addEntriesFromDictionary:]: unrecognized selector sent to instance 0x7f93a2c79e80'
*** First throw call stack:
(
	0   CoreFoundation                      0x00007fff2bd6a00b __exceptionPreprocess + 171
	1   libobjc.A.dylib                     0x00007fff52948c76 objc_exception_throw + 48
	2   CoreFoundation                      0x00007fff2be02cd4 -[NSObject(NSObject) doesNotRecognizeSelector:] + 132
	3   CoreFoundation                      0x00007fff2bce03f0 ___forwarding___ + 1456
	4   CoreFoundation                      0x00007fff2bcdfdb8 _CF_forwarding_prep_0 + 120
	5   Robjc                               0x000000010cf4e973 Robjc + 18803
	6   Robjc                               0x000000010cf4e484 Robjc + 17540
	7   Robjc                               0x000000010cf58749 Robjc + 59209
	8   Robjc                               0x000000010cf4bd22 Robjc + 7458
	9   libdyld.dylib                       0x00007fff53538115 start + 1
	10  ???                                 0x0000000000000003 0x0 + 3
)
libc++abi.dylib: terminating with uncaught exception of type NSException
/Users/admin/Library/Developer/Xcode/DerivedData/BMProject-gndkchqcuovuqgcfbsipxxtnrrku/Build/Intermediates.noindex/BMProject.build/Debug-iphoneos/The Melburnian Dev.build/Script-845954D41FFE08DD00669822.sh: line 2: 51650 Abort trap: 6           "${PODS_ROOT}/R.objc/Robjc" -p "$SRCROOT"
Command /bin/sh failed with exit code 134

Install script

i can't pod R.objc

pod search R.objc
[!] Unable to find a pod with name, author, summary, or description matching R\.objc

pod install
Analyzing dependencies
[!] Unable to find a specification for R.objc

[FR]Load resource via class methods?

Please allow to load resources using class methods, e.g. images and storyboards.

In current implementation we need to spawn temporary obect to access resource.

Querstion about UIStoryboardSegue

hello,i have some questions about segues. The search in some storyboards is not accurate, and the segue of some controllers is not generated.

文档不详细

文档不详细,好难配置,希望可以把文档完善

Get failed when build with R.objc scripting

Hello .I Get a failed when build with R.objc today

This is my script

# Type a script or drag a script file from your workspace to insert its path.
"${PODS_ROOT}/R.objc/Robjc" -p "$SRCROOT" --skip-themes --skip-storyboards --skip-segues -e "$SRCROOT/Pods" -v

the logs as followed,
PhaseScriptExecution Resource\ Key\ Generate\ Script /Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/Script-E5760FF8225F39550029B612.sh
cd /Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=huya
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD=x86_64
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT=x86_64
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIconTest
export ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME=LaunchImageTest
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products
export BUILD_ROOT=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/39/p1rj008d13sgpp91m0230f7r0000gn/C/com.apple.DeveloperTools/10.1-10B61/Xcode
export CCHROOT=/var/folders/39/p1rj008d13sgpp91m0230f7r0000gn/C/com.apple.DeveloperTools/10.1-10B61/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED=YES
export CLANG_ANALYZER_NONNULL=YES
export CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION=YES_AGGRESSIVE
export CLANG_CXX_LANGUAGE_STANDARD=gnu++14
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_ENABLE_OBJC_WEAK=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/huya/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_DOCUMENTATION_COMMENTS=YES
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNGUARDED_AVAILABILITY=YES_AGGRESSIVE
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/IDLFundationTest.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY="iPhone Developer"
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export CODE_SIGN_STYLE=Automatic
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=IDLFundationTest.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.1
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_VARIANT=normal
export CustomName=测试服Debug包
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1"
export DERIVED_FILES_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/DerivedSources
export DERIVED_FILE_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=en
export DEVELOPMENT_TEAM=4DLDXBD4UT
export DOCUMENTATION_FOLDER_PATH=IDLFundationTest.app/en.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/IDLFundation.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=IDLFundationTest.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_DESTINATION=__entitlements
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch .xcode .xcassets () .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=IDLFundationTest.app/Executables
export EXECUTABLE_FOLDER_PATH=IDLFundationTest.app
export EXECUTABLE_NAME=IDLFundationTest
export EXECUTABLE_PATH=IDLFundationTest.app/IDLFundationTest
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/FixedFiles
export FRAMEWORKS_FOLDER_PATH=IDLFundationTest.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/DoraemonKit/iOS/DoraemonKit/Framework""
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=IDLFundationTest.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu11
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PRECOMPILE_PREFIX_HEADER=YES
export GCC_PREFIX_HEADER=/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/IDLFundation/IDLPrefixHeader.pch
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 COCOAPODS=1 IDL_TEST_ENV=1"
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/include "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/Aspects" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/BSBacktraceLogger" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/CocoaLumberjack" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/DoraemonKit" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/FBAllocationTracker" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/FBRetainCycleDetector" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/GVUserDefaults" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/IGListKit" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/JLRoutes" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/LEEAlert" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/MBProgressHUD" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/MJRefresh" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/MLeaksFinder" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/Masonry" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/OMGHTTPURLRQ" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/Objection" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/PNChart" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/PromiseKit" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/R.objc" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/ReactiveObjC" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/SAMKeychain" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/SQLiteRepairKit" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/SSZipArchive" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/UICountingLabel" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/UITextView+Placeholder" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/WCDB" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/WCDBOptimizedSQLCipher" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/YYCache" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/YYModel" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/fishhook" "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/lottie-ios""
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/huya
export ICONV=/usr/bin/iconv
export IDL_APP_ICON=AppIconTest
export IDL_APP_LAUNCHIMAGE=LaunchImageTest
export IDL_APP_NAME=IDL测
export IDL_APP_VERSION=0.0.1
export IDL_BUNDLE_ID=com.idealist.IDLFundationTest
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=IDLFundation/App/Config/Test/IDLFundationTest-Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=IDLFundationTest.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=IDLFundationTest.app/en.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/IDLFundation.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=huya
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/IDLFundation.dst
export IPHONEOS_DEPLOYMENT_TARGET=12.1
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=IDLFundationTest.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/Objects-normal/x86_64/IDLFundationTest_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/IDLFundationTest-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/Aspects" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/BSBacktraceLogger" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/CocoaLumberjack" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/DoraemonKit" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/FBAllocationTracker" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/FBRetainCycleDetector" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/GVUserDefaults" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/IGListKit" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/JLRoutes" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/LEEAlert" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/MBProgressHUD" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/MJRefresh" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/MLeaksFinder" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/Masonry" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/OMGHTTPURLRQ" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/Objection" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/PNChart" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/PromiseKit" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/ReactiveObjC" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/SAMKeychain" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/SQLiteRepairKit" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/SSZipArchive" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/UICountingLabel" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/UITextView+Placeholder" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/WCDB" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/WCDBOptimizedSQLCipher" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/YYCache" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/YYModel" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/fishhook" "/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/lottie-ios""
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/Objects-normal/x86_64/IDLFundationTest.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LLVM_TARGET_TRIPLE_SUFFIX=-simulator
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=IDLFundationTest.app/en.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=18F132
export MAC_OS_X_VERSION_ACTUAL=101405
export MAC_OS_X_VERSION_MAJOR=101400
export MAC_OS_X_VERSION_MINOR=1405
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/IDLFundationTest.app
export MODULE_CACHE_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=INCLUDE_SOURCE
export MTL_FAST_MATH=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/Objects
export OBJECT_FILE_DIR_normal=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/Objects-normal
export OBJROOT=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export OTHER_CFLAGS=" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/Aspects" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/BSBacktraceLogger" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/CocoaLumberjack" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/DoraemonKit" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/FBAllocationTracker" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/FBRetainCycleDetector" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/GVUserDefaults" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/IGListKit" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/JLRoutes" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/LEEAlert" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/MBProgressHUD" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/MJRefresh" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/MLeaksFinder" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/Masonry" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/OMGHTTPURLRQ" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/Objection" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/PNChart" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/PromiseKit" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/R.objc" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/ReactiveObjC" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/SAMKeychain" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/SQLiteRepairKit" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/SSZipArchive" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/UICountingLabel" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/UITextView+Placeholder" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/WCDB" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/WCDBOptimizedSQLCipher" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/YYCache" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/YYModel" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/fishhook" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/lottie-ios""
export OTHER_CPLUSPLUSFLAGS=" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/Aspects" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/BSBacktraceLogger" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/CocoaLumberjack" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/DoraemonKit" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/FBAllocationTracker" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/FBRetainCycleDetector" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/GVUserDefaults" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/IGListKit" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/JLRoutes" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/LEEAlert" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/MBProgressHUD" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/MJRefresh" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/MLeaksFinder" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/Masonry" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/OMGHTTPURLRQ" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/Objection" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/PNChart" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/PromiseKit" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/R.objc" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/ReactiveObjC" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/SAMKeychain" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/SQLiteRepairKit" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/SSZipArchive" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/UICountingLabel" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/UITextView+Placeholder" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/WCDB" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/WCDBOptimizedSQLCipher" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/YYCache" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/YYModel" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/fishhook" -isystem "/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods/Headers/Public/lottie-ios""
export OTHER_LDFLAGS=" -ObjC -l"Aspects" -l"BSBacktraceLogger" -l"CocoaLumberjack" -l"DoraemonKit" -l"FBAllocationTracker" -l"FBRetainCycleDetector" -l"GVUserDefaults" -l"IGListKit" -l"JLRoutes" -l"LEEAlert" -l"MBProgressHUD" -l"MJRefresh" -l"MLeaksFinder" -l"Masonry" -l"OMGHTTPURLRQ" -l"Objection" -l"PNChart" -l"PromiseKit" -l"ReactiveObjC" -l"SAMKeychain" -l"SQLiteRepairKit" -l"SSZipArchive" -l"UICountingLabel" -l"UITextView+Placeholder" -l"WCDB" -l"WCDBOptimizedSQLCipher" -l"YYCache" -l"YYModel" -l"c++" -l"fishhook" -l"iconv" -l"lottie-ios" -l"sqlite3" -l"z" -framework "CoreFoundation" -framework "CoreGraphics" -framework "DoraemonLoadAnalyze" -framework "Foundation" -framework "QuartzCore" -framework "Security" -framework "UIKit" -weak_framework "AssetsLibrary""
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=IDLFundationTest.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS="objective-c objective-c++"
export PKGINFO_FILE_PATH=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/PkgInfo
export PKGINFO_PATH=IDLFundationTest.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=IDLFundationTest.app/PlugIns
export PODS_BUILD_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products
export PODS_CONFIGURATION_BUILD_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator
export PODS_PODFILE_DIR_PATH=/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/.
export PODS_ROOT=/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/Pods
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PRIVATE_HEADERS_FOLDER_PATH=IDLFundationTest.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=--IDL-BUNDLE-ID-
export PRODUCT_MODULE_NAME=IDLFundationTest
export PRODUCT_NAME=IDLFundationTest
export PRODUCT_SETTINGS_PATH=/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/IDLFundation/App/Config/Test/IDLFundationTest-Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=IDLFundation
export PROJECT_DERIVED_FILE_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/DerivedSources
export PROJECT_DIR=/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation
export PROJECT_FILE_PATH=/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation/IDLFundation.xcodeproj
export PROJECT_NAME=IDLFundation
export PROJECT_TEMP_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build
export PROJECT_TEMP_ROOT=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=IDLFundationTest.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=IDLFundationTest.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_INPUT_FILE_LIST_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_LIST_COUNT=0
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
export SDK_DIR_iphonesimulator12_1=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
export SDK_NAME=iphonesimulator12.1
export SDK_NAMES=iphonesimulator12.1
export SDK_PRODUCT_BUILD_VERSION=16B91
export SDK_VERSION=12.1
export SDK_VERSION_ACTUAL=120100
export SDK_VERSION_MAJOR=120000
export SDK_VERSION_MINOR=100
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=IDLFundationTest.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=IDLFundationTest.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation
export SRCROOT=/Users/huya/Project/Dodid/iOS/FrameWork/IDLFundation/IDLFundation
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SYMROOT=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=IDLFundationTest
export TARGET_BUILD_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Products/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER=48B37B24-FEBB-40E1-861A-E3CA06925C5E
export TARGET_DEVICE_MODEL=iPhone11,8
export TARGET_DEVICE_OS_VERSION=12.1
export TARGET_NAME=IDLFundationTest
export TARGET_TEMP_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build
export TEMP_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build
export TEMP_FILES_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build
export TEMP_FILE_DIR=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build
export TEMP_ROOT=/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH=IDLFundationTest.app
export UNSTRIPPED_PRODUCT=NO
export USER=huya
export USER_APPS_DIR=/Users/huya/Applications
export USER_LIBRARY_DIR=/Users/huya/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERSIONPLIST_PATH=IDLFundationTest.app/version.plist
export VERSION_INFO_BUILDER=huya
export VERSION_INFO_FILE=IDLFundationTest_vers.c
export VERSION_INFO_STRING=""@(#)PROGRAM:IDLFundationTest PROJECT:IDLFundation-""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=IDLFundationTest.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=10B61
export XCODE_VERSION_ACTUAL=1010
export XCODE_VERSION_MAJOR=1000
export XCODE_VERSION_MINOR=1010
export XPCSERVICES_FOLDER_PATH=IDLFundationTest.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/Script-E5760FF8225F39550029B612.sh

/Users/huya/Library/Developer/Xcode/DerivedData/IDLFundation-duljbadnopdcdvdrrosqiyojkslx/Build/Intermediates.noindex/IDLFundation.build/Debug-iphonesimulator/IDLFundationTest.build/Script-E5760FF8225F39550029B612.sh: line 3: 2235 Killed: 9 "${PODS_ROOT}/R.objc/Robjc" -p "$SRCROOT" --skip-themes --skip-storyboards --skip-segues -e "$SRCROOT/Pods" -v

@guidosabatini-sysdata could you please help me to find out this problem ? thx

Command /bin/sh failed with exit code 255

Hi!

I have followed Getting started, but on build I got this error at the strings step: NSURLErrorDomain (-1016) => kCFURLErrorCannotDecodeContentData (my localization strings are organized in a bundle, which is located directly in the project folder).

bug

i have two property xx_a and xxa
but they are all xxa in R.h

storyboard identifier not support tableViewController ?

I found a problem in the course of my use:

https://github.com/SysdataSpA/R.objc/blob/master/R.objc/Sources/StoryboardsGenerator.m#L115

The code here is only handled: viewController navigationController pageViewController viewControllerPlaceholder

storyboard identifier not support: tableViewController collectionViewController tabBarController
and splitViewController glkViewController avPlayerViewController

.

Sorry, my English is not good.
Hope you can understand what I'm talking about

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.