xcpretty-bb 0.1.12.bb1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/.hound.yml +2 -0
  4. data/.kick +17 -0
  5. data/.rubocop.yml +239 -0
  6. data/.travis.yml +11 -0
  7. data/CHANGELOG.md +200 -0
  8. data/CONTRIBUTING.md +64 -0
  9. data/Gemfile +9 -0
  10. data/LICENSE.txt +61 -0
  11. data/README.md +93 -0
  12. data/Rakefile +26 -0
  13. data/assets/report.html.erb +172 -0
  14. data/bin/xcpretty +85 -0
  15. data/features/assets/RACCommandSpec, line 80, hello xcpretty.png +0 -0
  16. data/features/assets/apple_raw.png +0 -0
  17. data/features/custom_formatter.feature +15 -0
  18. data/features/fixtures/xcodebuild.log +5963 -0
  19. data/features/html_report.feature +54 -0
  20. data/features/json_compilation_database_report.feature +21 -0
  21. data/features/junit_report.feature +44 -0
  22. data/features/knock_format.feature +11 -0
  23. data/features/simple_format.feature +204 -0
  24. data/features/steps/formatting_steps.rb +330 -0
  25. data/features/steps/html_steps.rb +32 -0
  26. data/features/steps/json_steps.rb +37 -0
  27. data/features/steps/junit_steps.rb +39 -0
  28. data/features/steps/report_steps.rb +22 -0
  29. data/features/steps/xcpretty_steps.rb +31 -0
  30. data/features/support/env.rb +117 -0
  31. data/features/tap_format.feature +31 -0
  32. data/features/test_format.feature +49 -0
  33. data/features/xcpretty.feature +14 -0
  34. data/lib/xcpretty/ansi.rb +72 -0
  35. data/lib/xcpretty/formatters/formatter.rb +177 -0
  36. data/lib/xcpretty/formatters/knock.rb +35 -0
  37. data/lib/xcpretty/formatters/rspec.rb +33 -0
  38. data/lib/xcpretty/formatters/simple.rb +200 -0
  39. data/lib/xcpretty/formatters/tap.rb +40 -0
  40. data/lib/xcpretty/parser.rb +591 -0
  41. data/lib/xcpretty/printer.rb +24 -0
  42. data/lib/xcpretty/reporters/html.rb +98 -0
  43. data/lib/xcpretty/reporters/json_compilation_database.rb +62 -0
  44. data/lib/xcpretty/reporters/junit.rb +102 -0
  45. data/lib/xcpretty/snippet.rb +38 -0
  46. data/lib/xcpretty/syntax.rb +51 -0
  47. data/lib/xcpretty/term.rb +14 -0
  48. data/lib/xcpretty/version.rb +4 -0
  49. data/lib/xcpretty.rb +37 -0
  50. data/spec/fixtures/NSStringTests.m +64 -0
  51. data/spec/fixtures/constants.rb +600 -0
  52. data/spec/fixtures/custom_formatter.rb +18 -0
  53. data/spec/fixtures/oneliner.m +1 -0
  54. data/spec/fixtures/raw_kiwi_compilation_fail.txt +24 -0
  55. data/spec/fixtures/raw_kiwi_fail.txt +1896 -0
  56. data/spec/fixtures/raw_specta_fail.txt +3110 -0
  57. data/spec/spec_helper.rb +7 -0
  58. data/spec/support/matchers/colors.rb +21 -0
  59. data/spec/xcpretty/ansi_spec.rb +47 -0
  60. data/spec/xcpretty/formatters/formatter_spec.rb +140 -0
  61. data/spec/xcpretty/formatters/rspec_spec.rb +56 -0
  62. data/spec/xcpretty/formatters/simple_spec.rb +173 -0
  63. data/spec/xcpretty/parser_spec.rb +542 -0
  64. data/spec/xcpretty/printer_spec.rb +55 -0
  65. data/spec/xcpretty/snippet_spec.rb +46 -0
  66. data/spec/xcpretty/syntax_spec.rb +39 -0
  67. data/spec/xcpretty/term_spec.rb +26 -0
  68. data/xcpretty.gemspec +37 -0
  69. metadata +237 -0
@@ -0,0 +1,600 @@
1
+ # encoding: utf-8
2
+
3
+ KIWI = 'kiwi'
4
+ OCUNIT = 'ocunit'
5
+ SAMPLE_OCUNIT_TEST_RUN_BEGINNING = "Test Suite '/Users/musalj/Library/Developer/Xcode/DerivedData/ReactiveCocoa-eznxkbqvgfsnrvetemqloysuwagb/Build/Products/Test/ReactiveCocoaTests.octest(Tests)' started at 2013-12-10 07:04:33 +0000"
6
+ SAMPLE_KIWI_TEST_RUN_BEGINNING = "Test Suite 'ObjectiveRecordTests.xctest' started at 2013-12-10 06:15:39 +0000"
7
+ SAMPLE_SPECTA_TEST_RUN_BEGINNING = " Test Suite 'KIFTests.xctest' started at 2014-02-28 15:43:42 +0000"
8
+ SAMPLE_OCUNIT_TEST_RUN_COMPLETION = "Test Suite '/Users/musalj/Library/Developer/Xcode/DerivedData/ReactiveCocoa-eznxkbqvgfsnrvetemqloysuwagb/Build/Products/Test/ReactiveCocoaTests.octest(Tests)' finished at 2013-12-10 07:03:03 +0000."
9
+ SAMPLE_OCUNIT_FAILED_TEST_RUN_COMPLETION = "Test Suite '/Users/dm/someplace/Macadamia.octest' failed at 2014-09-24 23:09:20 +0000."
10
+ SAMPLE_OCUNIT_PASSED_TEST_RUN_COMPLETION = "Test Suite 'Hazelnuts.xctest' passed at 2014-09-24 23:09:20 +0000."
11
+ SAMPLE_KIWI_TEST_RUN_COMPLETION = "Test Suite 'ObjectiveRecordTests.xctest' finished at 2013-12-10 06:15:42 +0000."
12
+ SAMPLE_SPECTA_TEST_RUN_COMPLETION = " Test Suite 'KIFTests.xctest' finished at 2014-02-28 15:44:32 +0000."
13
+
14
+ SAMPLE_OCUNIT_SUITE_BEGINNING = "Test Suite 'RACKVOWrapperSpec' started at 2013-12-10 21:06:10 +0000"
15
+ SAMPLE_SPECTA_SUITE_BEGINNING = " Test Suite 'All tests' started at 2014-02-28 19:07:41 +0000"
16
+ SAMPLE_KIWI_SUITE_COMPLETION = "Test Suite 'All tests' finished at 2013-12-08 04:26:49 +0000."
17
+ SAMPLE_OCUNIT_SUITE_COMPLETION = "Test Suite '/Users/musalj/Library/Developer/Xcode/DerivedData/ReactiveCocoa-eznxkbqvgfsnrvetemqloysuwagb/Build/Products/Test/ReactiveCocoaTests.octest(Tests)' finished at 2013-12-08 22:09:37 +0000."
18
+ SAMPLE_XCTEST_SUITE_COMPLETION = "Test Suite 'ObjectiveSugarTests.xctest' finished at 2013-12-09 04:42:13 +0000."
19
+
20
+ SAMPLE_KIWI_FAILURE = "/Users/musalj/code/OSS/ObjectiveSugar/Example/ObjectiveSugarTests/NSNumberTests.m:49: error: -[NumberAdditions Iterators_TimesIteratesTheExactNumberOfTimes] : 'Iterators, times: iterates the exact number of times' [FAILED], expected subject to equal 4, got 5"
21
+ SAMPLE_OLD_SPECTA_FAILURE = "/Users/musalj/code/OSS/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoaTests/RACCommandSpec.m:458: error: -[RACCommandSpec enabled_signal_should_send_YES_while_executing_is_YES_and_allowsConcurrentExecution_is_YES] : expected: 1, got: 0"
22
+ SAMPLE_SPECTA_FAILURE = " Test Case '-[SKWelcomeViewControllerSpecSpec SKWelcomeViewController_When_a_user_opens_the_app_from_a_clean_installation_displays_the_welcome_screen]' started. \n/Users/vickeryj/Code/ipad-register/KIFTests/Specs/SKWelcomeViewControllerSpec.m:11: error: -[SKWelcomeViewControllerSpecSpec SKWelcomeViewController_When_a_user_opens_the_app_from_a_clean_installation_displays_the_welcome_screen] : The step timed out after 2.00 seconds: Failed to find accessibility element with the label \"The asimplest way to make smarter business decisions\""
23
+
24
+ SAMPLE_BUILD = "=== BUILD TARGET The Spacer OF PROJECT Pods WITH THE DEFAULT CONFIGURATION Debug ==="
25
+ SAMPLE_ANALYZE_TARGET = "=== ANALYZE TARGET The Spacer OF PROJECT Pods WITH THE DEFAULT CONFIGURATION Debug ==="
26
+ SAMPLE_CLEAN = "=== CLEAN TARGET Pods-ObjectiveSugar OF PROJECT Pods WITH CONFIGURATION Debug ==="
27
+ SAMPLE_ANOTHER_CLEAN = "=== CLEAN TARGET Pods OF PROJECT Pods WITH CONFIGURATION Debug ==="
28
+ SAMPLE_BUILD_SUCCEEDED = "** BUILD SUCCEEDED **"
29
+ SAMPLE_CLEAN_SUCCEEDED = "** CLEAN SUCCEEDED **"
30
+ SAMPLE_CLEAN_REMOVE = %Q(
31
+ Clean.Remove clean /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugarTests.build
32
+ builtin-rm -rf /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugarTests.build
33
+ )
34
+ SAMPLE_EXECUTED_TESTS = "Executed 4 tests, with 0 failures (0 unexpected) in 0.003 (0.004) seconds"
35
+ SAMPLE_SPECTA_EXECUTED_TESTS = " Executed 4 tests, with 0 failures (0 unexpected) in 10.192 (10.193) seconds"
36
+ SAMPLE_OCUNIT_TEST = "Test Case '-[RACCommandSpec enabled_signal_should_send_YES_while_executing_is_YES_and_allowsConcurrentExecution_is_YES]' passed (0.001 seconds)."
37
+ SAMPLE_SPECTA_TEST = " Test Case '-[SKWelcomeActivationViewControllerSpecSpec SKWelcomeActivationViewController_When_a_user_enters_their_details_lets_them_enter_a_valid_manager_code]' passed (0.725 seconds)."
38
+ SAMPLE_SLOWISH_TEST = "Test Case '-[RACCommandSpec enabled_signal_should_send_YES_while_executing_is_YES_and_allowsConcurrentExecution_is_YES]' passed (0.026 seconds)."
39
+ SAMPLE_SLOW_TEST = "Test Case '-[RACCommandSpec enabled_signal_should_send_YES_while_executing_is_YES_and_allowsConcurrentExecution_is_YES]' passed (0.101 seconds)."
40
+ SAMPLE_KIWI_TEST = "Test Case '-[MappingsTests Mappings_SupportsCreatingAParentObjectUsingJustIDFromTheServer]' passed (0.004 seconds)."
41
+ SAMPLE_PENDING_KIWI_TEST = "Test Case '-[TAPIConversationSpec TAPIConversation_createConversation_SendsAPOSTRequestToTheConversationsEndpointPENDING]' passed (0.001 seconds)."
42
+ SAMPLE_MEASURING_TEST = "<unknown>:0: Test Case '-[SecEncodeTransformTests.SecEncodeTransformTests test_RFC4648_Decode_UsingBase32]' measured [Time, seconds] average: 0.013, relative standard deviation: 26.773%, values: [0.023838, 0.012034, 0.013512, 0.011022, 0.011203, 0.012814, 0.011131, 0.012740, 0.013646, 0.012145], performanceMetricID:com.apple.XCTPerformanceMetric_WallClockTime, baselineName: "", baselineAverage: , maxPercentRegression: 10.000%, maxPercentRelativeStandardDeviation: 10.000%, maxRegression: 0.100, maxStandardDeviation: 0.100"
43
+ SAMPLE_COMPILE = %Q(
44
+ CompileC /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Objects-normal/i386/NSMutableArray+ObjectiveSugar.o /Users/musalj/code/OSS/ObjectiveSugar/Classes/NSMutableArray+ObjectiveSugar.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler
45
+ cd /Users/musalj/code/OSS/ObjectiveSugar/Example/Pods
46
+ setenv LANG en_US.US-ASCII
47
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
48
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch i386 -fmessage-length=178 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fcolor-diagnostics -std=gnu99 -fmodules -fmodules-cache-path=/Users/musalj/Library/Developer/Xcode/DerivedData/ModuleCache -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -fexceptions -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -fobjc-abi-version=2 -fobjc-legacy-dispatch -mios-simulator-version-min=5.0 -iquote /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Pods-ObjectiveSugar-generated-files.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Pods-ObjectiveSugar-own-target-headers.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Pods-ObjectiveSugar-all-target-headers.hmap -iquote /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Pods-ObjectiveSugar-project-headers.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/include -I/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/BuildHeaders -I/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/BuildHeaders/ObjectiveSugar -I/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/Headers -I/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/Headers/Kiwi -I/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/Headers/ObjectiveSugar -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/DerivedSources/i386 -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/DerivedSources -F/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator -include /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/PrecompiledHeaders/Pods-ObjectiveSugar-prefix-fbehxvikzshezadcwuseekuhbnus/Pods-ObjectiveSugar-prefix.pch -MMD -MT dependencies -MF /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Objects-normal/i386/NSMutableArray+ObjectiveSugar.d --serialize-diagnostics /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Objects-normal/i386/NSMutableArray+ObjectiveSugar.dia -c /Users/musalj/code/OSS/ObjectiveSugar/Classes/NSMutableArray+ObjectiveSugar.m -o /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Objects-normal/i386/NSMutableArray+ObjectiveSugar.o
49
+ )
50
+ SAMPLE_COMPILE_SPACE_IN_PATH = %Q(
51
+ CompileC /Users/supermarin/Library/Developer/Xcode/DerivedData/SampleWorkspace-furbnwegumclnwbotvisbynpuqvh/Build/Intermediates/SACore.build/Debug-iphonesimulator/SACore.build/Objects-normal/i386/SASellableItem.o SACore/App/Models/Core\\ Data/human/SASellableItem.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler
52
+ cd /Users/supermarin/Documents/source/ios-sample-newgen/libs/SACore
53
+ setenv LANG en_US.US-ASCII
54
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/Users/supermarin/.rvm/bin"
55
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch i386 -fmessage-length=204 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fcolor-diagnostics -std=gnu99 -fobjc-arc -Wno-trigraphs -fpascal-strings -O0 -Werror -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-implicit-atomic-properties -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-shorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DDEBUG=1 -DBUILD_USER=@\"supermarin\" -DNI_DYNAMIC_VIEWS -DALLOW_ENV_SWITCH -DSA_CORE_BUNDLE_NAME=@\"SACore.bundle\" -DNI_DEBUG_CSS_SELECTOR_TARGET=setAccessibilityValue -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -fexceptions -fasm-blocks -fstrict-aliasing -fprofile-arcs -ftest-coverage -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -fobjc-abi-version=2 -fobjc-legacy-dispatch -mios-simulator-version-min=5.0 -iquote /Users/supermarin/Library/Developer/Xcode/DerivedData/SampleWorkspace-furbnwegumclnwbotvisbynpuqvh/Build/Intermediates/SACore.build/Debug-iphonesimulator/SACore.build/SACore-generated-files.hmap -I/Users/supermarin/Library/Developer/Xcode/DerivedData/SampleWorkspace-furbnwegumclnwbotvisbynpuqvh/Build/Intermediates/SACore.build/Debug-iphonesimulator/SACore.build/SACore-own-target-headers.hmap -I/Users/supermarin/Library/Developer/Xcode/DerivedData/SampleWorkspace-furbnwegumclnwbotvisbynpuqvh/Build/Intermediates/SACore.build/Debug-iphonesimulator/SACore.build/SACore-all-target-headers.hmap -iquote /Users/supermarin/Library/Developer/Xcode/DerivedData/SampleWorkspace-furbnwegumclnwbotvisbynpuqvh/Build/Intermediates/SACore.build/Debug-iphonesimulator/SACore.build/SACore-project-headers.hmap -I/Users/supermarin/Library/Developer/Xcode/DerivedData/SampleWorkspace-furbnwegumclnwbotvisbynpuqvh/Build/Products/Debug-iphonesimulator/include -I/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/usr/include/libxml2 -I../../contrib -I../../contrib/CardIO -I../../contrib/Crittercism -I../../contrib/Epson -I../../contrib/GCDAsyncSocket -I../../contrib/iOS_fpti_sdk -I../../contrib/JASidePanels -I../../contrib/JSONKit -I../../contrib/LibComponentLogging-Core -I../../contrib/LibComponentLogging-NSLogger -I../../contrib/MagicalRecord -I../../contrib/MongooseDaemon -I../../contrib/nimbus -I../../contrib/NSLogger -I../../contrib/objective-c-formatter -I../../contrib/SARiskComponent -I../../contrib/Star -I../../contrib/CardIO/CardIO -I../../contrib/Crittercism/Crittercism_v3_5_1 -I../../contrib/iOS_fpti_sdk/fpti_sample -I../../contrib/iOS_fpti_sdk/ios_fpti_sdk -I../../contrib/JASidePanels/JASidePanels -I../../contrib/MagicalRecord/Docs -I../../contrib/MagicalRecord/MagicalRecord -I../../contrib/MagicalRecord/Project\ Files -I../../contrib/MagicalRecord/Samples -I../../contrib/nimbus/docs -I../../contrib/nimbus/examples -I../../contrib/nimbus/scripts -I../../contrib/nimbus/src -I../../contrib/nimbus/templates -I../../contrib/nimbus/thirdparty -I../../contrib/NSLogger/Client\ Logger -I../../contrib/NSLogger/Desktop\ Viewer -I../../contrib/NSLogger/Docs -I../../contrib/NSLogger/iPad\ Viewer -I../../contrib/NSLogger/Screenshots -I../../contrib/SARiskComponent/SARiskComponent -I../../contrib/SARiskComponent/SARiskComponentTests -I../../contrib/Star/Distributables -I../../contrib/Star/Documents -I../../contrib/Star/Samples -I../../contrib/Crittercism/Crittercism_v3_5_1/CrittercismExampleApp -I../../contrib/Crittercism/Crittercism_v3_5_1/CrittercismSDK -I../../contrib/Crittercism/Crittercism_v3_5_1/Docs -I../../contrib/iOS_fpti_sdk/fpti_sample/fpti_sample -I../../contrib/iOS_fpti_sdk/ios_fpti_sdk/ios_fpti_sdk -I../../contrib/iOS_fpti_sdk/ios_fpti_sdk/ios_fpti_sdkTests -I../../contrib/JASidePanels/JASidePanels/Demo -I../../contrib/JASidePanels/JASidePanels/Source -I../../contrib/MagicalRecord/MagicalRecord/Categories -I../../contrib/MagicalRecord/MagicalRecord/Core -I../../contrib/MagicalRecord/Project\ Files/Library -I../../contrib/MagicalRecord/Project\ Files/Tests -I../../contrib/MagicalRecord/Samples/iOS -I../../contrib/MagicalRecord/Samples/Mac -I../../contrib/nimbus/docs/gfx -I../../contrib/nimbus/docs/js -I../../contrib/nimbus/docs/keynotes -I../../contrib/nimbus/examples/catalog -I../../contrib/nimbus/examples/css -I../../contrib/nimbus/examples/photos -I../../contrib/nimbus/scripts/ios -I../../contrib/nimbus/src/attributedlabel -I../../contrib/nimbus/src/badge -I../../contrib/nimbus/src/collections -I../../contrib/nimbus/src/core -I../../contrib/nimbus/src/css -I../../contrib/nimbus/src/interapp -I../../contrib/nimbus/src/launcher -I../../contrib/nimbus/src/models -I../../contrib/nimbus/src/networkcontrollers -I../../contrib/nimbus/src/networkimage -I../../contrib/nimbus/src/overview -I../../contrib/nimbus/src/pagingscrollview -I../../contrib/nimbus/src/photos -I../../contrib/nimbus/src/resources -I../../contrib/nimbus/src/textfield -I../../contrib/nimbus/src/webcontroller -I../../contrib/nimbus/templates/xcode3 -I../../contrib/nimbus/templates/xcode4 -I../../contrib/nimbus/thirdparty/AFNetworking -I../../contrib/nimbus/thirdparty/JSONKit -I../../contrib/NSLogger/Client\ Logger/Android -I../../contrib/NSLogger/Client\ Logger/iOS -I../../contrib/NSLogger/Desktop\ Viewer/Classes -I../../contrib/NSLogger/Desktop\ Viewer/Resources -I../../contrib/NSLogger/Desktop\ Viewer/Third\ Party -I../../contrib/NSLogger/iPad\ Viewer/Constants -I../../contrib/NSLogger/iPad\ Viewer/CoreDataModel -I../../contrib/NSLogger/iPad\ Viewer/DataStorage -I../../contrib/NSLogger/iPad\ Viewer/iPad\ Viewer -I../../contrib/NSLogger/iPad\ Viewer/Managers -I../../contrib/NSLogger/iPad\ Viewer/Model -I../../contrib/NSLogger/iPad\ Viewer/NSLoggerResource.bundle -I../../contrib/NSLogger/iPad\ Viewer/Utilities -I../../contrib/NSLogger/iPad\ Viewer/Vendors -I../../contrib/NSLogger/iPad\ Viewer/ViewController -I../../contrib/NSLogger/iPad\ Viewer/Views\ &\ Cells -I../../contrib/Star/Samples/IOS_SDK -I../../contrib/Star/Samples/Resources-iPad -I../../contrib/Crittercism/Crittercism_v3_5_1/CrittercismExampleApp/CrittercismExampleApp -I../../contrib/MagicalRecord/MagicalRecord/Categories/DataImport -I../../contrib/MagicalRecord/MagicalRecord/Categories/NSManagedObject -I../../contrib/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext -I../../contrib/MagicalRecord/Project\ Files/Library/Support -I../../contrib/MagicalRecord/Project\ Files/Tests/Core -I../../contrib/MagicalRecord/Project\ Files/Tests/DataImport -I../../contrib/MagicalRecord/Project\ Files/Tests/Fixtures -I../../contrib/MagicalRecord/Project\ Files/Tests/Support -I../../contrib/MagicalRecord/Samples/iOS/Application -I../../contrib/MagicalRecord/Samples/iOS/Resources -I../../contrib/nimbus/examples/catalog/Catalog -I../../contrib/nimbus/examples/css/CSSDemo -I../../contrib/nimbus/examples/photos/NetworkPhotoAlbums -I../../contrib/nimbus/src/attributedlabel/src -I../../contrib/nimbus/src/attributedlabel/unittests -I../../contrib/nimbus/src/badge/src -I../../contrib/nimbus/src/badge/unittests -I../../contrib/nimbus/src/collections/src -I../../contrib/nimbus/src/core/examples -I../../contrib/nimbus/src/core/src -I../../contrib/nimbus/src/core/unittests -I../../contrib/nimbus/src/css/chameleon -I../../contrib/nimbus/src/css/grammar -I../../contrib/nimbus/src/css/src -I../../contrib/nimbus/src/css/unittests -I../../contrib/nimbus/src/interapp/src -I../../contrib/nimbus/src/interapp/unittests -I../../contrib/nimbus/src/launcher/src -I../../contrib/nimbus/src/launcher/unittests -I../../contrib/nimbus/src/models/examples -I../../contrib/nimbus/src/models/src -I../../contrib/nimbus/src/models/unittests -I../../contrib/nimbus/src/networkcontrollers/src -I../../contrib/nimbus/src/networkcontrollers/unittests -I../../contrib/nimbus/src/networkimage/src -I../../contrib/nimbus/src/networkimage/unittests -I../../contrib/nimbus/src/overview/resources -I../../contrib/nimbus/src/overview/src -I../../contrib/nimbus/src/overview/unittests -I../../contrib/nimbus/src/pagingscrollview/src -I../../contrib/nimbus/src/pagingscrollview/unittests -I../../contrib/nimbus/src/photos/resources -I../../contrib/nimbus/src/photos/src -I../../contrib/nimbus/src/photos/unittests -I../../contrib/nimbus/src/textfield/src -I../../contrib/nimbus/src/webcontroller/resources -I../../contrib/nimbus/src/webcontroller/src -I../../contrib/nimbus/src/webcontroller/unittests -I../../contrib/nimbus/templates/xcode3/projects -I../../contrib/nimbus/templates/xcode3/source -I../../contrib/nimbus/templates/xcode4/projects -I../../contrib/nimbus/thirdparty/AFNetworking/AFNetworking -I../../contrib/nimbus/thirdparty/AFNetworking/AFNetworking.xcworkspace -I../../contrib/nimbus/thirdparty/AFNetworking/Example -I../../contrib/NSLogger/Client\ Logger/Android/client-code -I../../contrib/NSLogger/Client\ Logger/Android/example -I../../contrib/NSLogger/Client\ Logger/iOS/iPhone\ Test\ App -I../../contrib/NSLogger/Client\ Logger/iOS/iPhone\ Test\ App\ (ARC) -I../../contrib/NSLogger/Client\ Logger/iOS/Mac\ Test\ App -I../../contrib/NSLogger/Desktop\ Viewer/Resources/Icon -I../../contrib/NSLogger/Desktop\ Viewer/Third\ Party/BWToolkit -I../../contrib/NSLogger/Desktop\ Viewer/Third\ Party/HockeySDK-Mac -I../../contrib/NSLogger/Desktop\ Viewer/Third\ Party/SSSelectableToolbar -I../../contrib/NSLogger/iPad\ Viewer/CoreDataModel/LoggerMessages.xcdatamodeld -I../../contrib/NSLogger/iPad\ Viewer/DataStorage/DataOperation -I../../contrib/NSLogger/iPad\ Viewer/Model/MessageFormatter -I../../contrib/NSLogger/iPad\ Viewer/Model/MessageSizeCalculator -I../../contrib/NSLogger/iPad\ Viewer/Model/NativeLogFormat -I../../contrib/NSLogger/iPad\ Viewer/NSLoggerResource.bundle/background -I../../contrib/NSLogger/iPad\ Viewer/NSLoggerResource.bundle/button -I../../contrib/NSLogger/iPad\ Viewer/NSLoggerResource.bundle/Certificate -I../../contrib/NSLogger/iPad\ Viewer/NSLoggerResource.bundle/fonts -I../../contrib/NSLogger/iPad\ Viewer/NSLoggerResource.bundle/Icon -I../../contrib/NSLogger/iPad\ Viewer/NSLoggerResource.bundle/Profiles -I../../contrib/NSLogger/iPad\ Viewer/Utilities/CoreData -I../../contrib/NSLogger/iPad\ Viewer/Utilities/Directory -I../../contrib/NSLogger/iPad\ Viewer/Utilities/ICloud -I../../contrib/NSLogger/iPad\ Viewer/Utilities/Macro -I../../contrib/NSLogger/iPad\ Viewer/Utilities/String -I../../contrib/NSLogger/iPad\ Viewer/Utilities/UIColor -I../../contrib/NSLogger/iPad\ Viewer/Vendors/KGNoise -I../../contrib/NSLogger/iPad\ Viewer/ViewController/BaseViewController -I../../contrib/NSLogger/iPad\ Viewer/ViewController/MessageViewController -I../../contrib/NSLogger/iPad\ Viewer/Views\ &\ Cells/MessageCell -I../../contrib/Star/Samples/IOS_SDK/Resources -I../../contrib/Star/Samples/Resources-iPad/IOS_SDK -I../../contrib/MagicalRecord/Project\ Files/Tests/Fixtures/TestModel -I../../contrib/MagicalRecord/Project\ Files/Tests/Fixtures/TestModel.xcdatamodeld -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor -I../../contrib/MagicalRecord/Samples/iOS/Application/Categories -I../../contrib/MagicalRecord/Samples/iOS/Application/Controllers -I../../contrib/MagicalRecord/Samples/iOS/Application/Delegate -I../../contrib/MagicalRecord/Samples/iOS/Application/Models -I../../contrib/MagicalRecord/Samples/iOS/Application/Support -I../../contrib/MagicalRecord/Samples/iOS/Application/Views -I../../contrib/MagicalRecord/Samples/iOS/Resources/images -I../../contrib/MagicalRecord/Samples/iOS/Resources/RecipeData -I../../contrib/nimbus/examples/css/CSSDemo/resources -I../../contrib/nimbus/examples/photos/NetworkPhotoAlbums/resources -I../../contrib/nimbus/examples/photos/NetworkPhotoAlbums/src -I../../contrib/nimbus/src/overview/resources/NimbusOverviewer.bundle -I../../contrib/nimbus/src/photos/resources/NimbusPhotos.bundle -I../../contrib/nimbus/src/webcontroller/resources/NimbusWebController.bundle -I../../contrib/nimbus/templates/xcode3/projects/Skeleton\ App -I../../contrib/nimbus/templates/xcode3/source/Nimbus\ Hacking -I../../contrib/nimbus/templates/xcode4/projects/Base.xctemplate -I../../contrib/nimbus/templates/xcode4/projects/Bundle\ Base.xctemplate -I../../contrib/nimbus/templates/xcode4/projects/Cocoa\ Touch\ Application.xctemplate -I../../contrib/nimbus/templates/xcode4/projects/iPhone\ Base.xctemplate -I../../contrib/nimbus/templates/xcode4/projects/Objective-C\ Application.xctemplate -I../../contrib/nimbus/templates/xcode4/projects/Skeleton\ App\ (Apache\ 2.0\ Licensed).xctemplate -I../../contrib/nimbus/thirdparty/AFNetworking/Example/Classes -I../../contrib/nimbus/thirdparty/AFNetworking/Example/Images -I../../contrib/NSLogger/Client\ Logger/Android/client-code/lib -I../../contrib/NSLogger/Client\ Logger/Android/client-code/src -I../../contrib/NSLogger/Client\ Logger/Android/example/com -I../../contrib/NSLogger/Client\ Logger/iOS/iPhone\ Test\ App/Classes -I../../contrib/NSLogger/Client\ Logger/iOS/iPhone\ Test\ App\ (ARC)/Classes -I../../contrib/NSLogger/Desktop\ Viewer/Third\ Party/HockeySDK-Mac/CrashReporter.framework.dSYM -I../../contrib/NSLogger/Desktop\ Viewer/Third\ Party/HockeySDK-Mac/HockeySDK.framework.dSYM -I../../contrib/NSLogger/iPad\ Viewer/CoreDataModel/LoggerMessages.xcdatamodeld/LoggerMessages.xcdatamodel -I../../contrib/NSLogger/iPad\ Viewer/ViewController/BaseViewController/KeyboardAddition -I../../contrib/MagicalRecord/Project\ Files/Tests/Fixtures/TestModel.xcdatamodeld/TestModel.xcdatamodel -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Expecta -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Specta -I../../contrib/MagicalRecord/Samples/iOS/Application/Models/entities -I../../contrib/MagicalRecord/Samples/iOS/Application/Models/generated -I../../contrib/MagicalRecord/Samples/iOS/Application/Models/Recipes.xcdatamodeld -I../../contrib/nimbus/examples/css/CSSDemo/resources/css -I../../contrib/nimbus/src/overview/resources/NimbusOverviewer.bundle/gfx -I../../contrib/nimbus/src/photos/resources/NimbusPhotos.bundle/gfx -I../../contrib/nimbus/src/webcontroller/resources/NimbusWebController.bundle/gfx -I../../contrib/nimbus/templates/xcode3/projects/Skeleton\ App/Skeleton\ App\ (Apache\ 2.0\ Licensed) -I../../contrib/nimbus/templates/xcode3/source/Nimbus\ Hacking/Objective-C\ Class -I../../contrib/nimbus/templates/xcode4/projects/Skeleton\ App\ (Apache\ 2.0\ Licensed).xctemplate/resources -I../../contrib/nimbus/templates/xcode4/projects/Skeleton\ App\ (Apache\ 2.0\ Licensed).xctemplate/src -I../../contrib/nimbus/thirdparty/AFNetworking/Example/Classes/Controllers -I../../contrib/nimbus/thirdparty/AFNetworking/Example/Classes/Models -I../../contrib/nimbus/thirdparty/AFNetworking/Example/Classes/Views -I../../contrib/NSLogger/Client\ Logger/Android/client-code/src/com -I../../contrib/NSLogger/Client\ Logger/Android/example/com/example -I../../contrib/NSLogger/Desktop\ Viewer/Third\ Party/HockeySDK-Mac/CrashReporter.framework.dSYM/Contents -I../../contrib/NSLogger/Desktop\ Viewer/Third\ Party/HockeySDK-Mac/HockeySDK.framework.dSYM/Contents -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Expecta/products -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Expecta/src -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Expecta/test -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Specta/products -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Specta/src -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Specta/templates -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Specta/test -I../../contrib/MagicalRecord/Samples/iOS/Application/Models/Recipes.xcdatamodeld/Recipes\ 2.xcdatamodel -I../../contrib/MagicalRecord/Samples/iOS/Application/Models/Recipes.xcdatamodeld/Recipes.xcdatamodel -I../../contrib/nimbus/examples/css/CSSDemo/resources/css/root -I../../contrib/nimbus/templates/xcode3/projects/Skeleton\ App/Skeleton\ App\ (Apache\ 2.0\ Licensed)/resources -I../../contrib/nimbus/templates/xcode3/projects/Skeleton\ App/Skeleton\ App\ (Apache\ 2.0\ Licensed)/src -I../../contrib/nimbus/templates/xcode3/source/Nimbus\ Hacking/Objective-C\ Class/NSObject\ subclass.pbfiletemplate -I../../contrib/nimbus/templates/xcode3/source/Nimbus\ Hacking/Objective-C\ Class/UIView\ subclass.pbfiletemplate -I../../contrib/nimbus/templates/xcode3/source/Nimbus\ Hacking/Objective-C\ Class/UIViewController\ subclass.pbfiletemplate -I../../contrib/NSLogger/Client\ Logger/Android/client-code/src/com/NSLogger -I../../contrib/NSLogger/Desktop\ Viewer/Third\ Party/HockeySDK-Mac/CrashReporter.framework.dSYM/Contents/Resources -I../../contrib/NSLogger/Desktop\ Viewer/Third\ Party/HockeySDK-Mac/HockeySDK.framework.dSYM/Contents/Resources -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Expecta/src/matchers -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Expecta/test/helpers -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Expecta/test/matchers -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Expecta/test/support -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Specta/templates/Specta -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Specta/test/helpers -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Specta/test/support -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Specta/test/vendor -I../../contrib/NSLogger/Desktop\ Viewer/Third\ Party/HockeySDK-Mac/CrashReporter.framework.dSYM/Contents/Resources/DWARF -I../../contrib/NSLogger/Desktop\ Viewer/Third\ Party/HockeySDK-Mac/HockeySDK.framework.dSYM/Contents/Resources/DWARF -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Specta/templates/Specta/Specta\ Spec\ Helper.xctemplate -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Specta/templates/Specta/Specta\ Spec.xctemplate -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Specta/test/vendor/expecta -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Specta/templates/Specta/Specta\ Spec\ Helper.xctemplate/NSObject -I../../contrib/MagicalRecord/Project\ Files/Tests/Support/Vendor/Specta/templates/Specta/Specta\ Spec.xctemplate/Default -I../ios-sample-sdk -I../ios-sample-sdk/SampleSDK -I../ios-sample-sdk/SampleSDKResources -I../ios-sample-sdk/SASDKIntegrationTests -I../ios-sample-sdk/SASDKTests -I../ios-sample-sdk/Scripts -I../ios-sample-sdk/Swipers -I../ios-sample-sdk/SampleSDK/Core -I../ios-sample-sdk/SampleSDK/Invoice -I../ios-sample-sdk/SampleSDK/Local -I../ios-sample-sdk/SampleSDK/Payment -I../ios-sample-sdk/SampleSDK/Reader -I../ios-sample-sdk/SampleSDK/UI -I../ios-sample-sdk/SampleSDKResources/Images -I../ios-sample-sdk/SampleSDKResources/PropertyLists -I../ios-sample-sdk/SampleSDKResources/Sounds -I../ios-sample-sdk/SASDKIntegrationTests/Payment -I../ios-sample-sdk/SASDKIntegrationTests/TestHelpers -I../ios-sample-sdk/SASDKTests/Card -I../ios-sample-sdk/SASDKTests/Invoice -I../ios-sample-sdk/SASDKTests/OCMock -I../ios-sample-sdk/SASDKTests/Printing -I../ios-sample-sdk/SASDKTests/Resources -I../ios-sample-sdk/Scripts/buildMachine -I../ios-sample-sdk/Swipers/Griffin -I../ios-sample-sdk/Swipers/Magtek -I../ios-sample-sdk/Swipers/Roam -I../ios-sample-sdk/SampleSDK/Core/Analytics -I../ios-sample-sdk/SampleSDK/Core/CalLogging -I../ios-sample-sdk/SampleSDK/Core/Extensions -I../ios-sample-sdk/SampleSDK/Core/Networking -I../ios-sample-sdk/SampleSDK/Core/NSLogger -I../ios-sample-sdk/SampleSDK/Core/SecureUDID -I../ios-sample-sdk/SampleSDK/Reader/Bond -I../ios-sample-sdk/SASDKTests/OCMock/OCMock -I../ios-sample-sdk/Swipers/Magtek/Release-iphoneos -I../ios-sample-sdk/Swipers/Magtek/Release-iphonesimulator -I/Users/supermarin/Library/Developer/Xcode/DerivedData/SampleWorkspace-furbnwegumclnwbotvisbynpuqvh/Build/Intermediates/SACore.build/Debug-iphonesimulator/SACore.build/DerivedSources/i386 -I/Users/supermarin/Library/Developer/Xcode/DerivedData/SampleWorkspace-furbnwegumclnwbotvisbynpuqvh/Build/Intermediates/SACore.build/Debug-iphonesimulator/SACore.build/DerivedSources -F/Users/supermarin/Library/Developer/Xcode/DerivedData/SampleWorkspace-furbnwegumclnwbotvisbynpuqvh/Build/Products/Debug-iphonesimulator -F/Users/supermarin/Documents/source/ios-sample-newgen/libs/SACore/../../apps/iPhone/sample\ sample -F/Users/supermarin/Documents/source/ios-sample-newgen/libs/SACore/../../contrib/Star/Distributables -include /Users/supermarin/Library/Developer/Xcode/DerivedData/SampleWorkspace-furbnwegumclnwbotvisbynpuqvh/Build/Intermediates/PrecompiledHeaders/SACore-Prefix-hdwrpwhozamhpiatzyqmxqgofzdk/SACore-Prefix.pch -MMD -MT dependencies -MF /Users/supermarin/Library/Developer/Xcode/DerivedData/SampleWorkspace-furbnwegumclnwbotvisbynpuqvh/Build/Intermediates/SACore.build/Debug-iphonesimulator/SACore.build/Objects-normal/i386/SASellableItem.d --serialize-diagnostics /Users/supermarin/Library/Developer/Xcode/DerivedData/SampleWorkspace-furbnwegumclnwbotvisbynpuqvh/Build/Intermediates/SACore.build/Debug-iphonesimulator/SACore.build/Objects-normal/i386/SASellableItem.dia -c /Users/supermarin/Documents/source/ios-sample-newgen/libs/SACore/SACore/App/Models/Core\ Data/human/SASellableItem.m -o /Users/supermarin/Library/Developer/Xcode/DerivedData/SampleWorkspace-furbnwegumclnwbotvisbynpuqvh/Build/Intermediates/SACore.build/Debug-iphonesimulator/SACore.build/Objects-normal/i386/SASellableItem.o
56
+ )
57
+ SAMPLE_ANOTHER_COMPILE = %Q(
58
+ CompileC /Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Objects-normal/i386/KWNull.o Classes/Core/KWNull.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler
59
+ cd /Users/musalj/code/OSS/Kiwi
60
+ setenv LANG en_US.US-ASCII
61
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
62
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch i386 -fmessage-length=178 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fcolor-diagnostics -std=c99 -fobjc-arc -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wmissing-prototypes -Wno-implicit-atomic-properties -Wno-receiver-is-weak -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 -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wpointer-sign -Wnewline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -fexceptions -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -fobjc-abi-version=2 -fobjc-legacy-dispatch -mios-simulator-version-min=5.0 -iquote /Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Kiwi-generated-files.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Kiwi-own-target-headers.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Kiwi-all-target-headers.hmap -iquote /Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Kiwi-project-headers.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Products/Debug-iphonesimulator/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/DerivedSources/i386 -I/Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/DerivedSources -Wall -F/Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Products/Debug-iphonesimulator -F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/Developer/Library/Frameworks -F/Applications/Xcode.app/Contents/Developer/Library/Frameworks -include /Users/musalj/code/OSS/Kiwi/Supporting\ Files/Kiwi-Prefix.pch -MMD -MT dependencies -MF /Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Objects-normal/i386/KWNull.d --serialize-diagnostics /Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Objects-normal/i386/KWNull.dia -c /Users/musalj/code/OSS/Kiwi/Classes/Core/KWNull.m -o /Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Objects-normal/i386/KWNull.o
63
+ )
64
+ SAMPLE_SWIFT_COMPILE = %Q(
65
+ CompileSwift normal arm64 /Users/paul/foo/bar/siesta/Source/Resource.swift
66
+ cd /Users/paul/foo/bar/siesta
67
+ /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c /Users/paul/foo/bar/siesta/Source/Networking-Alamofire.swift /Users/paul/foo/bar/siesta/Source/Networking.swift /Users/paul/foo/bar/siesta/Source/ARC+Siesta.swift /Users/paul/foo/bar/siesta/Source/DebugFormatting.swift /Users/paul/foo/bar/siesta/Source/Configuration.swift /Users/paul/foo/bar/siesta/Source/Networking-NSURLSession.swift /Users/paul/foo/bar/siesta/Source/Collection+Siesta.swift /Users/paul/foo/bar/siesta/Source/Logging.swift /Users/paul/foo/bar/siesta/Source/GCD+Siesta.swift /Users/paul/foo/bar/siesta/Source/Regex.swift /Users/paul/foo/bar/siesta/Source/ResourceObserver.swift /Users/paul/foo/bar/siesta/Source/Service.swift /Users/paul/foo/bar/siesta/Source/Request.swift /Users/paul/foo/bar/siesta/Source/NSURL+Siesta.swift /Users/paul/foo/bar/siesta/Source/ResourceStatusOverlay.swift /Users/paul/foo/bar/siesta/Source/WeakCache.swift -primary-file /Users/paul/foo/bar/siesta/Source/Resource.swift /Users/paul/foo/bar/siesta/Source/ResponseTransformer.swift /Users/paul/foo/bar/siesta/Source/RemoteImageView.swift /Users/paul/foo/bar/siesta/Source/Error.swift /Users/paul/foo/bar/siesta/Source/Entity.swift /Users/paul/foo/bar/siesta/Source/Siesta-ObjC.swift /Users/paul/foo/bar/siesta/Source/String+Siesta.swift /Users/paul/foo/bar/siesta/Source/PersistentCache.swift -target arm64-apple-ios8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk -I /tmp/xcode-build/Release-iphoneos -F /tmp/xcode-build/Release-iphoneos -F /Users/paul/foo/bar/siesta/Carthage/Build/iOS -g -import-underlying-module -serialize-debugging-options -Xcc -I/tmp/xcode-build/Siesta.build/Release-iphoneos/Siesta.build/swift-overrides.hmap -Xcc -iquote -Xcc /tmp/xcode-build/Siesta.build/Release-iphoneos/Siesta.build/Siesta-generated-files.hmap -Xcc -I/tmp/xcode-build/Siesta.build/Release-iphoneos/Siesta.build/Siesta-own-target-headers.hmap -Xcc -I/tmp/xcode-build/Siesta.build/Release-iphoneos/Siesta.build/Siesta-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /tmp/xcode-build/Siesta.build/all-product-headers.yaml -Xcc -iquote -Xcc /tmp/xcode-build/Siesta.build/Release-iphoneos/Siesta.build/Siesta-project-headers.hmap -Xcc -I/tmp/xcode-build/Release-iphoneos/include -Xcc -I/tmp/xcode-build/Siesta.build/Release-iphoneos/Siesta.build/DerivedSources/arm64 -Xcc -I/tmp/xcode-build/Siesta.build/Release-iphoneos/Siesta.build/DerivedSources -Xcc -ivfsoverlay -Xcc /tmp/xcode-build/Siesta.build/Release-iphoneos/Siesta.build/unextended-module-overlay.yaml -Xcc -working-directory/Users/paul/foo/bar/siesta -emit-module-doc-path /tmp/xcode-build/Siesta.build/Release-iphoneos/Siesta.build/Objects-normal/arm64/Resource~partial.swiftdoc -O -module-name Siesta -emit-module-path /tmp/xcode-build/Siesta.build/Release-iphoneos/Siesta.build/Objects-normal/arm64/Resource~partial.swiftmodule -serialize-diagnostics-path /tmp/xcode-build/Siesta.build/Release-iphoneos/Siesta.build/Objects-normal/arm64/Resource.dia -emit-dependencies-path /tmp/xcode-build/Siesta.build/Release-iphoneos/Siesta.build/Objects-normal/arm64/Resource.d -emit-reference-dependencies-path /tmp/xcode-build/Siesta.build/Release-iphoneos/Siesta.build/Objects-normal/arm64/Resource.swiftdeps -o /tmp/xcode-build/Siesta.build/Release-iphoneos/Siesta.build/Objects-normal/arm64/Resource.o -embed-bitcode-marker
68
+ )
69
+ SAMPLE_PRECOMPILE = %Q(
70
+ ProcessPCH /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/PrecompiledHeaders/Pods-CocoaLumberjack-prefix-aklsecopvqdctoeroyamrkgktpei/Pods-CocoaLumberjack-prefix.pch.pch Pods-CocoaLumberjack-prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler
71
+ cd /Users/musalj/code/OSS/ObjectiveRecord/Pods
72
+ setenv LANG en_US.US-ASCII
73
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/.rbenv/versions/2.0.0-p247/bin:/usr/local/Cellar/rbenv/0.4.0/libexec:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
74
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=178 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fcolor-diagnostics -std=gnu99 -fmodules -fmodules-cache-path=/Users/musalj/Library/Developer/Xcode/DerivedData/ModuleCache -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -fexceptions -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -fobjc-abi-version=2 -fobjc-legacy-dispatch -mios-simulator-version-min=6.0 -iquote /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-CocoaLumberjack.build/Pods-CocoaLumberjack-generated-files.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-CocoaLumberjack.build/Pods-CocoaLumberjack-own-target-headers.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-CocoaLumberjack.build/Pods-CocoaLumberjack-all-target-headers.hmap -iquote /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-CocoaLumberjack.build/Pods-CocoaLumberjack-project-headers.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Products/Debug-iphonesimulator/include -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/BuildHeaders -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/BuildHeaders/CocoaLumberjack -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/ABContactHelper -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/AFNetworking -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/CocoaLumberjack -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/CrittercismSDK -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/DTCoreText -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/DTFoundation -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/HPGrowingTextView -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/Kiwi -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/MAKVONotificationCenter -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/MAKVONotificationCenter/MAKVONotificationCenter -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/MBSwitch -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/MBSwitch/MBSwitch -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/Reachability -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/SBJson -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/SSKeychain -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/TITokenField -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/YamDrawReport -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/YamKit -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/YamKit/YamCore -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/YamKit/YamData -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/YamKit/YamSerf -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/YamKit/YamUI -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/YamKitTests -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/cometclient -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-CocoaLumberjack.build/DerivedSources/i386 -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-CocoaLumberjack.build/DerivedSources -F/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Products/Debug-iphonesimulator -fobjc-arc -DOS_OBJECT_USE_OBJC=0 --serialize-diagnostics /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/PrecompiledHeaders/Pods-CocoaLumberjack-prefix-aklsecopvqdctoeroyamrkgktpei/Pods-CocoaLumberjack-prefix.pch.dia -MMD -MT dependencies -MF /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/PrecompiledHeaders/Pods-CocoaLumberjack-prefix-aklsecopvqdctoeroyamrkgktpei/Pods-CocoaLumberjack-prefix.pch.d -c /Users/musalj/code/OSS/ObjectiveRecord/Pods/Pods-CocoaLumberjack-prefix.pch -o /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/PrecompiledHeaders/Pods-CocoaLumberjack-prefix-aklsecopvqdctoeroyamrkgktpei/Pods-CocoaLumberjack-prefix.pch.pch
75
+ )
76
+ SAMPLE_LIBTOOL = %Q(
77
+ Libtool /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/libPods-ObjectiveSugarTests-Kiwi.a normal i386
78
+ cd /Users/musalj/code/OSS/ObjectiveSugar/Example/Pods
79
+ setenv IPHONEOS_DEPLOYMENT_TARGET 5.0
80
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
81
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only i386 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -L/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator -filelist /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugarTests-Kiwi.build/Objects-normal/i386/Pods-ObjectiveSugarTests-Kiwi.LinkFileList -framework Foundation -framework SenTestingKit -o /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/libPods-ObjectiveSugarTests-Kiwi.a
82
+ )
83
+ SAMPLE_CPRESOURCE = %Q(
84
+ CpResource ObjectiveSugar/Default-568h@2x.png /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugar.app/Default-568h@2x.png
85
+ cd /Users/musalj/code/OSS/ObjectiveSugar/Example
86
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
87
+ builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/musalj/code/OSS/ObjectiveSugar/Example/ObjectiveSugar/Default-568h@2x.png /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugar.app
88
+ )
89
+ SAMPLE_COPYSTRINGS = %Q(
90
+ CopyStringsFile /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugar.app/en.lproj/InfoPlist.strings ObjectiveSugar/en.lproj/InfoPlist.strings
91
+ cd /Users/musalj/code/OSS/ObjectiveSugar/Example
92
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
93
+ builtin-copyStrings --validate --inputencoding utf-8 --outputencoding binary --outdir /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugar.app/en.lproj -- ObjectiveSugar/en.lproj/InfoPlist.strings
94
+ )
95
+ SAMPLE_PROCESS_INFOPLIST = %Q(
96
+ ProcessInfoPlistFile build/Release/The\\ Spacer.app/Contents/Info.plist The\\ Spacer/The\\ Spacer-Info.plist
97
+     cd "/Users/delisa/Code/Personal/The Spacer"
98
+     builtin-infoPlistUtility /Users/delisa/Code/Personal/The\\ Spacer/The\\ Spacer/The\\ Spacer-Info.plist -genpkginfo /Users/delisa/Code/Personal/The\\ Spacer/build/Release/The\\ Spacer.app/Contents/PkgInfo -expandbuildsettings -platform macosx -additionalcontentfile /Users/delisa/Code/Personal/The\\ Spacer/build/The\\ Spacer.build/Release/The\\ Spacer.build/assetcatalog_generated_info.plist -o /Users/delisa/Code/Personal/The\\ Spacer/build/Release/The\\ Spacer.app/Contents/Info.plist
99
+ )
100
+ SAMPLE_LD = %Q(
101
+ Ld /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugar.app/ObjectiveSugar normal i386
102
+ cd /Users/musalj/code/OSS/ObjectiveSugar/Example
103
+ setenv IPHONEOS_DEPLOYMENT_TARGET 4.3
104
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
105
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -L/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator -F/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator -filelist /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Objects-normal/i386/ObjectiveSugar.LinkFileList -Xlinker -objc_abi_version -Xlinker 2 -ObjC -fobjc-arc -fobjc-link-runtime -Xlinker -no_implicit_dylibs -mios-simulator-version-min=4.3 -framework UIKit -framework Foundation -framework CoreGraphics -lPods -Xlinker -dependency_info -Xlinker /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Objects-normal/i386/ObjectiveSugar_dependency_info.dat -o /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugar.app/ObjectiveSugar
106
+ )
107
+ SAMPLE_DSYM = %Q(
108
+ GenerateDSYMFile /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugarTests.octest.dSYM /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugarTests.octest/ObjectiveSugarTests
109
+ cd /Users/musalj/code/OSS/ObjectiveSugar/Example
110
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
111
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugarTests.octest/ObjectiveSugarTests -o /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugarTests.octest.dSYM
112
+ )
113
+ SAMPLE_TOUCH = %Q(
114
+ Touch /Users/musalj/Library/Developer/Xcode/DerivedData/Alcatraz-aobuxcinaqyzjugrnxjjhfzgwaou/Build/Products/Debug/Alcatraz\ Tests.octest
115
+ cd /Users/musalj/code/OSS/Alcatraz
116
+ /usr/bin/touch -c /Users/musalj/Library/Developer/Xcode/DerivedData/Alcatraz-aobuxcinaqyzjugrnxjjhfzgwaou/Build/Products/Debug/Alcatraz\ Tests.octest
117
+ )
118
+
119
+ SAMPLE_WRITE_FILE = %Q(
120
+ write-file /Users/me/myproject/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-AFNetworking.build/Objects-normal/x86_64/Pods-AFNetworking.LinkFileList
121
+ )
122
+
123
+ SAMPLE_WRITE_AUXILIARY_FILES = %Q(Write auxiliary files)
124
+
125
+ SAMPLE_TIFFUTIL = %Q(
126
+ TiffUtil eye_icon.tiff
127
+ cd /Users/musalj/code/OSS/Alcatraz
128
+ /usr/bin/tiffutil -cathidpicheck /Users/musalj/code/OSS/Alcatraz/Alcatraz/eye_icon@2x.png /Users/musalj/code/OSS/Alcatraz/Alcatraz/eye_icon.png -out /Users/musalj/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/Alcatraz.xcplugin/Contents/Resources/eye_icon.tiff
129
+ )
130
+ SAMPLE_RUN_SCRIPT = %Q(
131
+ PhaseScriptExecution Check\\ Pods\\ Manifest.lock /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Script-468DABF301EC4EC1A00CC4C2.sh
132
+ cd /Users/musalj/code/OSS/ObjectiveSugar/Example
133
+ setenv ACTION build
134
+ setenv AD_HOC_CODE_SIGNING_ALLOWED NO
135
+ setenv ALTERNATE_GROUP staff
136
+ setenv ALTERNATE_MODE u+w,go-w,a+rX
137
+ setenv ALTERNATE_OWNER musalj
138
+ setenv ALWAYS_SEARCH_USER_PATHS NO
139
+ setenv ALWAYS_USE_SEPARATE_HEADERMAPS YES
140
+ setenv APPLE_INTERNAL_DEVELOPER_DIR /AppleInternal/Developer
141
+ setenv APPLE_INTERNAL_DIR /AppleInternal
142
+ setenv APPLE_INTERNAL_DOCUMENTATION_DIR /AppleInternal/Documentation
143
+ setenv APPLE_INTERNAL_LIBRARY_DIR /AppleInternal/Library
144
+ setenv APPLE_INTERNAL_TOOLS /AppleInternal/Developer/Tools
145
+ setenv APPLY_RULES_IN_COPY_FILES NO
146
+ setenv ARCHS i386
147
+ setenv ARCHS_STANDARD i386
148
+ setenv ARCHS_STANDARD_32_64_BIT i386
149
+ setenv ARCHS_STANDARD_32_BIT i386
150
+ setenv ARCHS_STANDARD_64_BIT x86_64
151
+ setenv ARCHS_STANDARD_INCLUDING_64_BIT "i386 x86_64"
152
+ setenv AVAILABLE_PLATFORMS "iphonesimulator macosx iphoneos"
153
+ setenv BUILD_COMPONENTS "headers build"
154
+ setenv BUILD_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products
155
+ setenv BUILD_ROOT /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products
156
+ setenv BUILD_STYLE
157
+ setenv BUILD_VARIANTS normal
158
+ setenv BUILT_PRODUCTS_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator
159
+ setenv CACHE_ROOT /var/folders/dp/3hrp_j_j04b6gxk5tybq0lz80000gp/C/com.apple.DeveloperTools/5.0.2-5A3005/Xcode
160
+ setenv CCHROOT /var/folders/dp/3hrp_j_j04b6gxk5tybq0lz80000gp/C/com.apple.DeveloperTools/5.0.2-5A3005/Xcode
161
+ setenv CHMOD /bin/chmod
162
+ setenv CHOWN /usr/sbin/chown
163
+ setenv CLANG_CXX_LANGUAGE_STANDARD gnu++0x
164
+ setenv CLANG_CXX_LIBRARY libc++
165
+ setenv CLANG_ENABLE_OBJC_ARC YES
166
+ setenv CLANG_WARN_CONSTANT_CONVERSION YES
167
+ setenv CLANG_WARN_EMPTY_BODY YES
168
+ setenv CLANG_WARN_ENUM_CONVERSION YES
169
+ setenv CLANG_WARN_INT_CONVERSION YES
170
+ setenv CLANG_WARN__DUPLICATE_METHOD_MATCH YES
171
+ setenv CLASS_FILE_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/JavaClasses
172
+ setenv CLEAN_PRECOMPS YES
173
+ setenv CLONE_HEADERS NO
174
+ setenv CODESIGNING_FOLDER_PATH /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugar.app
175
+ setenv CODE_SIGNING_ALLOWED NO
176
+ setenv CODE_SIGN_CONTEXT_CLASS XCiPhoneSimulatorCodeSignContext
177
+ setenv CODE_SIGN_IDENTITY "iPhone Developer"
178
+ setenv COLOR_DIAGNOSTICS NO
179
+ setenv COMBINE_HIDPI_IMAGES NO
180
+ setenv COMMAND_MODE legacy
181
+ setenv COMPOSITE_SDK_DIRS /var/folders/dp/3hrp_j_j04b6gxk5tybq0lz80000gp/C/com.apple.DeveloperTools/5.0.2-5A3005/Xcode/CompositeSDKs
182
+ setenv COMPRESS_PNG_FILES YES
183
+ setenv CONFIGURATION Debug
184
+ setenv CONFIGURATION_BUILD_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator
185
+ setenv CONFIGURATION_TEMP_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator
186
+ setenv CONTENTS_FOLDER_PATH ObjectiveSugar.app
187
+ setenv COPYING_PRESERVES_HFS_DATA NO
188
+ setenv COPY_PHASE_STRIP NO
189
+ setenv COPY_RESOURCES_FROM_STATIC_FRAMEWORKS YES
190
+ setenv CP /bin/cp
191
+ setenv CREATE_INFOPLIST_SECTION_IN_BINARY NO
192
+ setenv CURRENT_ARCH i386
193
+ setenv CURRENT_VARIANT normal
194
+ setenv DEAD_CODE_STRIPPING NO
195
+ setenv DEBUGGING_SYMBOLS YES
196
+ setenv DEBUG_INFORMATION_FORMAT dwarf-with-dsym
197
+ setenv DEFAULT_COMPILER com.apple.compilers.llvm.clang.1_0
198
+ setenv DEFAULT_KEXT_INSTALL_PATH /System/Library/Extensions
199
+ setenv DEPLOYMENT_LOCATION NO
200
+ setenv DEPLOYMENT_POSTPROCESSING NO
201
+ setenv DERIVED_FILES_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/DerivedSources
202
+ setenv DERIVED_FILE_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/DerivedSources
203
+ setenv DERIVED_SOURCES_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/DerivedSources
204
+ setenv DEVELOPER_APPLICATIONS_DIR /Applications/Xcode.app/Contents/Developer/Applications
205
+ setenv DEVELOPER_BIN_DIR /Applications/Xcode.app/Contents/Developer/usr/bin
206
+ setenv DEVELOPER_DIR /Applications/Xcode.app/Contents/Developer
207
+ setenv DEVELOPER_FRAMEWORKS_DIR /Applications/Xcode.app/Contents/Developer/Library/Frameworks
208
+ setenv DEVELOPER_FRAMEWORKS_DIR_QUOTED /Applications/Xcode.app/Contents/Developer/Library/Frameworks
209
+ setenv DEVELOPER_LIBRARY_DIR /Applications/Xcode.app/Contents/Developer/Library
210
+ setenv DEVELOPER_SDK_DIR /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
211
+ setenv DEVELOPER_TOOLS_DIR /Applications/Xcode.app/Contents/Developer/Tools
212
+ setenv DEVELOPER_USR_DIR /Applications/Xcode.app/Contents/Developer/usr
213
+ setenv DEVELOPMENT_LANGUAGE English
214
+ setenv DOCUMENTATION_FOLDER_PATH ObjectiveSugar.app/English.lproj/Documentation
215
+ setenv DO_HEADER_SCANNING_IN_JAM NO
216
+ setenv DSTROOT /tmp/ObjectiveSugar.dst
217
+ setenv DT_TOOLCHAIN_DIR /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
218
+ setenv DWARF_DSYM_FILE_NAME ObjectiveSugar.app.dSYM
219
+ setenv DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT NO
220
+ setenv DWARF_DSYM_FOLDER_PATH /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator
221
+ setenv EFFECTIVE_PLATFORM_NAME -iphonesimulator
222
+ setenv ENABLE_HEADER_DEPENDENCIES YES
223
+ setenv EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS ".DS_Store .svn .git .hg CVS"
224
+ setenv EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES "*.nib *.lproj *.framework *.gch (*) .DS_Store CVS .svn .git .hg *.xcodeproj *.xcode *.pbproj *.pbxproj"
225
+ setenv EXECUTABLES_FOLDER_PATH ObjectiveSugar.app/Executables
226
+ setenv EXECUTABLE_FOLDER_PATH ObjectiveSugar.app
227
+ setenv EXECUTABLE_NAME ObjectiveSugar
228
+ setenv EXECUTABLE_PATH ObjectiveSugar.app/ObjectiveSugar
229
+ setenv FILE_LIST /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Objects/LinkFileList
230
+ setenv FIXED_FILES_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/FixedFiles
231
+ setenv FRAMEWORKS_FOLDER_PATH ObjectiveSugar.app/Frameworks
232
+ setenv FRAMEWORK_FLAG_PREFIX -framework
233
+ setenv FRAMEWORK_SEARCH_PATHS "/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator "
234
+ setenv FRAMEWORK_VERSION A
235
+ setenv FULL_PRODUCT_NAME ObjectiveSugar.app
236
+ setenv GCC3_VERSION 3.3
237
+ setenv GCC_C_LANGUAGE_STANDARD gnu99
238
+ setenv GCC_DYNAMIC_NO_PIC NO
239
+ setenv GCC_INLINES_ARE_PRIVATE_EXTERN YES
240
+ setenv GCC_OBJC_LEGACY_DISPATCH YES
241
+ setenv GCC_OPTIMIZATION_LEVEL 0
242
+ setenv GCC_PFE_FILE_C_DIALECTS "c objective-c c++ objective-c++"
243
+ setenv GCC_PRECOMPILE_PREFIX_HEADER YES
244
+ setenv GCC_PREFIX_HEADER ObjectiveSugar/ObjectiveSugar-Prefix.pch
245
+ setenv GCC_PREPROCESSOR_DEFINITIONS "DEBUG=1 COCOAPODS=1"
246
+ setenv GCC_SYMBOLS_PRIVATE_EXTERN NO
247
+ setenv GCC_TREAT_WARNINGS_AS_ERRORS NO
248
+ setenv GCC_VERSION com.apple.compilers.llvm.clang.1_0
249
+ setenv GCC_VERSION_IDENTIFIER com_apple_compilers_llvm_clang_1_0
250
+ setenv GCC_WARN_ABOUT_RETURN_TYPE YES
251
+ setenv GCC_WARN_UNINITIALIZED_AUTOS YES
252
+ setenv GCC_WARN_UNUSED_VARIABLE YES
253
+ setenv GENERATE_MASTER_OBJECT_FILE NO
254
+ setenv GENERATE_PKGINFO_FILE YES
255
+ setenv GENERATE_PROFILING_CODE NO
256
+ setenv GID 20
257
+ setenv GROUP staff
258
+ setenv HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT YES
259
+ setenv HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES YES
260
+ setenv HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS YES
261
+ setenv HEADERMAP_INCLUDES_PROJECT_HEADERS YES
262
+ setenv HEADER_SEARCH_PATHS "/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/include \"/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/Headers\" \"/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/Headers/Kiwi\" \"/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/Headers/ObjectiveSugar\""
263
+ setenv ICONV /usr/bin/iconv
264
+ setenv INFOPLIST_EXPAND_BUILD_SETTINGS YES
265
+ setenv INFOPLIST_FILE ObjectiveSugar/ObjectiveSugar-Info.plist
266
+ setenv INFOPLIST_OUTPUT_FORMAT binary
267
+ setenv INFOPLIST_PATH ObjectiveSugar.app/Info.plist
268
+ setenv INFOPLIST_PREPROCESS NO
269
+ setenv INFOSTRINGS_PATH ObjectiveSugar.app/English.lproj/InfoPlist.strings
270
+ setenv INSTALL_DIR /tmp/ObjectiveSugar.dst/Applications
271
+ setenv INSTALL_GROUP staff
272
+ setenv INSTALL_MODE_FLAG u+w,go-w,a+rX
273
+ setenv INSTALL_OWNER musalj
274
+ setenv INSTALL_PATH /Applications
275
+ setenv INSTALL_ROOT /tmp/ObjectiveSugar.dst
276
+ setenv IPHONEOS_DEPLOYMENT_TARGET 4.3
277
+ setenv JAVAC_DEFAULT_FLAGS "-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
278
+ setenv JAVA_APP_STUB /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
279
+ setenv JAVA_ARCHIVE_CLASSES YES
280
+ setenv JAVA_ARCHIVE_TYPE JAR
281
+ setenv JAVA_COMPILER /usr/bin/javac
282
+ setenv JAVA_FOLDER_PATH ObjectiveSugar.app/Java
283
+ setenv JAVA_FRAMEWORK_RESOURCES_DIRS Resources
284
+ setenv JAVA_JAR_FLAGS cv
285
+ setenv JAVA_SOURCE_SUBDIR .
286
+ setenv JAVA_USE_DEPENDENCIES YES
287
+ setenv JAVA_ZIP_FLAGS -urg
288
+ setenv JIKES_DEFAULT_FLAGS "+E +OLDCSO"
289
+ setenv KEEP_PRIVATE_EXTERNS NO
290
+ setenv LD_DEPENDENCY_INFO_FILE /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Objects-normal/i386/ObjectiveSugar_dependency_info.dat
291
+ setenv LD_GENERATE_MAP_FILE NO
292
+ setenv LD_MAP_FILE_PATH /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/ObjectiveSugar-LinkMap-normal-i386.txt
293
+ setenv LD_NO_PIE NO
294
+ setenv LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER YES
295
+ setenv LEGACY_DEVELOPER_DIR /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
296
+ setenv LEX lex
297
+ setenv LIBRARY_FLAG_NOSPACE YES
298
+ setenv LIBRARY_FLAG_PREFIX -l
299
+ setenv LIBRARY_KEXT_INSTALL_PATH /Library/Extensions
300
+ setenv LIBRARY_SEARCH_PATHS "/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator "
301
+ setenv LINKER_DISPLAYS_MANGLED_NAMES NO
302
+ setenv LINK_FILE_LIST_normal_i386 /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Objects-normal/i386/ObjectiveSugar.LinkFileList
303
+ setenv LINK_WITH_STANDARD_LIBRARIES YES
304
+ setenv LOCALIZED_RESOURCES_FOLDER_PATH ObjectiveSugar.app/English.lproj
305
+ setenv LOCAL_ADMIN_APPS_DIR /Applications/Utilities
306
+ setenv LOCAL_APPS_DIR /Applications
307
+ setenv LOCAL_DEVELOPER_DIR /Library/Developer
308
+ setenv LOCAL_LIBRARY_DIR /Library
309
+ setenv MACH_O_TYPE mh_execute
310
+ setenv MACOSX_DEPLOYMENT_TARGET 10.6
311
+ setenv MAC_OS_X_PRODUCT_BUILD_VERSION 13A603
312
+ setenv MAC_OS_X_VERSION_ACTUAL 1090
313
+ setenv MAC_OS_X_VERSION_MAJOR 1090
314
+ setenv MAC_OS_X_VERSION_MINOR 0900
315
+ setenv MODULE_CACHE_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ModuleCache
316
+ setenv NATIVE_ARCH i386
317
+ setenv NATIVE_ARCH_32_BIT i386
318
+ setenv NATIVE_ARCH_64_BIT x86_64
319
+ setenv NATIVE_ARCH_ACTUAL x86_64
320
+ setenv NO_COMMON YES
321
+ setenv OBJC_ABI_VERSION 2
322
+ setenv OBJECT_FILE_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Objects
323
+ setenv OBJECT_FILE_DIR_normal /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Objects-normal
324
+ setenv OBJROOT /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates
325
+ setenv ONLY_ACTIVE_ARCH NO
326
+ setenv OPTIMIZATION_LEVEL 0
327
+ setenv OS MACOS
328
+ setenv OSAC /usr/bin/osacompile
329
+ setenv OTHER_LDFLAGS -ObjC
330
+ setenv PACKAGE_TYPE com.apple.package-type.wrapper.application
331
+ setenv PASCAL_STRINGS YES
332
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/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:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/bin:/bin:/usr/sbin:/sbin"
333
+ setenv 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"
334
+ setenv PBDEVELOPMENTPLIST_PATH ObjectiveSugar.app/pbdevelopment.plist
335
+ setenv PFE_FILE_C_DIALECTS objective-c
336
+ setenv PKGINFO_FILE_PATH /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/PkgInfo
337
+ setenv PKGINFO_PATH ObjectiveSugar.app/PkgInfo
338
+ setenv PLATFORM_DEVELOPER_APPLICATIONS_DIR /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
339
+ setenv PLATFORM_DEVELOPER_BIN_DIR /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
340
+ setenv PLATFORM_DEVELOPER_LIBRARY_DIR /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
341
+ setenv PLATFORM_DEVELOPER_SDK_DIR /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
342
+ setenv PLATFORM_DEVELOPER_TOOLS_DIR /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
343
+ setenv PLATFORM_DEVELOPER_USR_DIR /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
344
+ setenv PLATFORM_DIR /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
345
+ setenv PLATFORM_NAME iphonesimulator
346
+ setenv PLATFORM_PREFERRED_ARCH i386
347
+ setenv PLATFORM_PRODUCT_BUILD_VERSION 11B508
348
+ setenv PLATFORM_VERSION_AVAILABILITY_H_FORMAT 70000
349
+ setenv PLIST_FILE_OUTPUT_FORMAT binary
350
+ setenv PLUGINS_FOLDER_PATH ObjectiveSugar.app/PlugIns
351
+ setenv PODS_ROOT /Users/musalj/code/OSS/ObjectiveSugar/Example/Pods
352
+ setenv PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR YES
353
+ setenv PRECOMP_DESTINATION_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/PrefixHeaders
354
+ setenv PRESERVE_DEAD_CODE_INITS_AND_TERMS NO
355
+ setenv PRIVATE_HEADERS_FOLDER_PATH ObjectiveSugar.app/PrivateHeaders
356
+ setenv PRODUCT_NAME ObjectiveSugar
357
+ setenv PRODUCT_SETTINGS_PATH /Users/musalj/code/OSS/ObjectiveSugar/Example/ObjectiveSugar/ObjectiveSugar-Info.plist
358
+ setenv PRODUCT_TYPE com.apple.product-type.application
359
+ setenv PROFILING_CODE NO
360
+ setenv PROJECT ObjectiveSugar
361
+ setenv PROJECT_DERIVED_FILE_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/DerivedSources
362
+ setenv PROJECT_DIR /Users/musalj/code/OSS/ObjectiveSugar/Example
363
+ setenv PROJECT_FILE_PATH /Users/musalj/code/OSS/ObjectiveSugar/Example/ObjectiveSugar.xcodeproj
364
+ setenv PROJECT_NAME ObjectiveSugar
365
+ setenv PROJECT_TEMP_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build
366
+ setenv PROJECT_TEMP_ROOT /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates
367
+ setenv PUBLIC_HEADERS_FOLDER_PATH ObjectiveSugar.app/Headers
368
+ setenv RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS YES
369
+ setenv REMOVE_CVS_FROM_RESOURCES YES
370
+ setenv REMOVE_GIT_FROM_RESOURCES YES
371
+ setenv REMOVE_HG_FROM_RESOURCES YES
372
+ setenv REMOVE_SVN_FROM_RESOURCES YES
373
+ setenv REZ_COLLECTOR_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/ResourceManagerResources
374
+ setenv REZ_OBJECTS_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/ResourceManagerResources/Objects
375
+ setenv REZ_SEARCH_PATHS "/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator "
376
+ setenv SCAN_ALL_SOURCE_FILES_FOR_INCLUDES NO
377
+ setenv SCRIPTS_FOLDER_PATH ObjectiveSugar.app/Scripts
378
+ setenv SCRIPT_INPUT_FILE_COUNT 0
379
+ setenv SCRIPT_OUTPUT_FILE_COUNT 0
380
+ setenv SDKROOT /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk
381
+ setenv SDK_DIR /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk
382
+ setenv SDK_NAME iphonesimulator7.0
383
+ setenv SDK_PRODUCT_BUILD_VERSION 11B508
384
+ setenv SED /usr/bin/sed
385
+ setenv SEPARATE_STRIP NO
386
+ setenv SEPARATE_SYMBOL_EDIT NO
387
+ setenv SET_DIR_MODE_OWNER_GROUP YES
388
+ setenv SET_FILE_MODE_OWNER_GROUP NO
389
+ setenv SHALLOW_BUNDLE YES
390
+ setenv SHARED_DERIVED_FILE_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/DerivedSources
391
+ setenv SHARED_FRAMEWORKS_FOLDER_PATH ObjectiveSugar.app/SharedFrameworks
392
+ setenv SHARED_PRECOMPS_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/PrecompiledHeaders
393
+ setenv SHARED_SUPPORT_FOLDER_PATH ObjectiveSugar.app/SharedSupport
394
+ setenv SKIP_INSTALL NO
395
+ setenv SOURCE_ROOT /Users/musalj/code/OSS/ObjectiveSugar/Example
396
+ setenv SRCROOT /Users/musalj/code/OSS/ObjectiveSugar/Example
397
+ setenv STRINGS_FILE_OUTPUT_ENCODING binary
398
+ setenv STRIP_INSTALLED_PRODUCT YES
399
+ setenv STRIP_STYLE all
400
+ setenv SUPPORTED_DEVICE_FAMILIES "1 2"
401
+ setenv SUPPORTED_PLATFORMS "iphonesimulator iphoneos"
402
+ setenv SYMROOT /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products
403
+ setenv SYSTEM_ADMIN_APPS_DIR /Applications/Utilities
404
+ setenv SYSTEM_APPS_DIR /Applications
405
+ setenv SYSTEM_CORE_SERVICES_DIR /System/Library/CoreServices
406
+ setenv SYSTEM_DEMOS_DIR /Applications/Extras
407
+ setenv SYSTEM_DEVELOPER_APPS_DIR /Applications/Xcode.app/Contents/Developer/Applications
408
+ setenv SYSTEM_DEVELOPER_BIN_DIR /Applications/Xcode.app/Contents/Developer/usr/bin
409
+ setenv SYSTEM_DEVELOPER_DEMOS_DIR "/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
410
+ setenv SYSTEM_DEVELOPER_DIR /Applications/Xcode.app/Contents/Developer
411
+ setenv SYSTEM_DEVELOPER_DOC_DIR "/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
412
+ setenv SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR "/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
413
+ setenv SYSTEM_DEVELOPER_JAVA_TOOLS_DIR "/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
414
+ setenv SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR "/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
415
+ setenv SYSTEM_DEVELOPER_RELEASENOTES_DIR "/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
416
+ setenv SYSTEM_DEVELOPER_TOOLS /Applications/Xcode.app/Contents/Developer/Tools
417
+ setenv SYSTEM_DEVELOPER_TOOLS_DOC_DIR "/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
418
+ setenv SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR "/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
419
+ setenv SYSTEM_DEVELOPER_USR_DIR /Applications/Xcode.app/Contents/Developer/usr
420
+ setenv SYSTEM_DEVELOPER_UTILITIES_DIR /Applications/Xcode.app/Contents/Developer/Applications/Utilities
421
+ setenv SYSTEM_DOCUMENTATION_DIR /Library/Documentation
422
+ setenv SYSTEM_KEXT_INSTALL_PATH /System/Library/Extensions
423
+ setenv SYSTEM_LIBRARY_DIR /System/Library
424
+ setenv TARGETED_DEVICE_FAMILY 1
425
+ setenv TARGETNAME ObjectiveSugar
426
+ setenv TARGET_BUILD_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator
427
+ setenv TARGET_NAME ObjectiveSugar
428
+ setenv TARGET_TEMP_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build
429
+ setenv TEMP_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build
430
+ setenv TEMP_FILES_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build
431
+ setenv TEMP_FILE_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build
432
+ setenv TEMP_ROOT /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates
433
+ setenv TOOLCHAINS com.apple.dt.toolchain.XcodeDefault
434
+ setenv UID 502
435
+ setenv UNLOCALIZED_RESOURCES_FOLDER_PATH ObjectiveSugar.app
436
+ setenv UNSTRIPPED_PRODUCT NO
437
+ setenv USER musalj
438
+ setenv USER_APPS_DIR /Users/musalj/Applications
439
+ setenv USER_LIBRARY_DIR /Users/musalj/Library
440
+ setenv USE_DYNAMIC_NO_PIC YES
441
+ setenv USE_HEADERMAP YES
442
+ setenv USE_HEADER_SYMLINKS NO
443
+ setenv VALIDATE_PRODUCT NO
444
+ setenv VALID_ARCHS i386
445
+ setenv VERBOSE_PBXCP NO
446
+ setenv VERSIONPLIST_PATH ObjectiveSugar.app/version.plist
447
+ setenv VERSION_INFO_BUILDER musalj
448
+ setenv VERSION_INFO_FILE ObjectiveSugar_vers.c
449
+ setenv VERSION_INFO_STRING "\"@(#)PROGRAM:ObjectiveSugar PROJECT:ObjectiveSugar-\""
450
+ setenv WRAPPER_EXTENSION app
451
+ setenv WRAPPER_NAME ObjectiveSugar.app
452
+ setenv WRAPPER_SUFFIX .app
453
+ setenv XCODE_APP_SUPPORT_DIR /Applications/Xcode.app/Contents/Developer/Library/Xcode
454
+ setenv XCODE_PRODUCT_BUILD_VERSION 5A3005
455
+ setenv XCODE_VERSION_ACTUAL 0502
456
+ setenv XCODE_VERSION_MAJOR 0500
457
+ setenv XCODE_VERSION_MINOR 0500
458
+ setenv XPCSERVICES_FOLDER_PATH ObjectiveSugar.app/XPCServices
459
+ setenv YACC yacc
460
+ setenv arch i386
461
+ setenv variant normal
462
+ /bin/sh -c /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Script-468DABF301EC4EC1A00CC4C2.sh
463
+ )
464
+ SAMPLE_ANALYZE = %Q(
465
+ Analyze CocoaChip/CCChip8DisplayView.m
466
+ cd /Users/dustin/Source/CocoaChip
467
+ setenv LANG en_US.US-ASCII
468
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=107 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fcolor-diagnostics -std=gnu99 -fobjc-arc -Wno-trigraphs -fpascal-strings -Os -Werror -Wmissing-field-initializers -Wmissing-prototypes -Wno-implicit-atomic-properties -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wsign-compare -Wshorten-64-to-32 -Wpointer-sign -Wnewline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.7 -g -fvisibility=hidden -Wno-sign-conversion -D__clang_analyzer__ -Xclang -analyzer-output=plist-multi-file -Xclang -analyzer-config -Xclang path-diagnostics-alternate=true -Xclang -analyzer-config -Xclang report-in-main-source-file=true -Xclang -analyzer-checker -Xclang security.insecureAPI.UncheckedReturn -Xclang -analyzer-checker -Xclang security.insecureAPI.getpw -Xclang -analyzer-checker -Xclang security.insecureAPI.gets -Xclang -analyzer-checker -Xclang security.insecureAPI.mkstemp -Xclang -analyzer-checker -Xclang security.insecureAPI.mktemp -Xclang -analyzer-disable-checker -Xclang security.insecureAPI.rand -Xclang -analyzer-disable-checker -Xclang security.insecureAPI.strcpy -Xclang -analyzer-checker -Xclang security.insecureAPI.vfork -iquote /Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-generated-files.hmap -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-own-target-headers.hmap -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-all-target-headers.hmap -iquote /Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-project-headers.hmap -I/Users/dustin/Source/CocoaChip/build/Release/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/DerivedSources/x86_64 -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/DerivedSources -F/Users/dustin/Source/CocoaChip/build/Release -include /var/folders/nn/s88k060x7016ccml2bc6f5_h0000gn/C/com.apple.DeveloperTools/5.0.2-5A3005/Xcode/SharedPrecompiledHeaders/CocoaChip-Prefix-cqqikmscxiepjgdcrgpysqicucyu/CocoaChip-Prefix.pch --analyze /Users/dustin/Source/CocoaChip/CocoaChip/CCChip8DisplayView.m -o /Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/StaticAnalyzer/CocoaChip/CocoaChip/normal/x86_64/CCChip8DisplayView.plist
469
+ )
470
+ SAMPLE_ANALYZE_SHALLOW = %Q(
471
+ AnalyzeShallow CocoaChip/CCChip8DisplayView.m
472
+ cd /Users/dustin/Source/CocoaChip
473
+ setenv LANG en_US.US-ASCII
474
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=107 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fcolor-diagnostics -std=gnu99 -fobjc-arc -Wno-trigraphs -fpascal-strings -Os -Werror -Wmissing-field-initializers -Wmissing-prototypes -Wno-implicit-atomic-properties -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wsign-compare -Wshorten-64-to-32 -Wpointer-sign -Wnewline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.7 -g -fvisibility=hidden -Wno-sign-conversion -D__clang_analyzer__ -Xclang -analyzer-output=plist-multi-file -Xclang -analyzer-config -Xclang path-diagnostics-alternate=true -Xclang -analyzer-config -Xclang report-in-main-source-file=true -Xclang -analyzer-config -Xclang mode=shallow -Xclang -analyzer-checker -Xclang security.insecureAPI.UncheckedReturn -Xclang -analyzer-checker -Xclang security.insecureAPI.getpw -Xclang -analyzer-checker -Xclang security.insecureAPI.gets -Xclang -analyzer-checker -Xclang security.insecureAPI.mkstemp -Xclang -analyzer-checker -Xclang security.insecureAPI.mktemp -Xclang -analyzer-disable-checker -Xclang security.insecureAPI.rand -Xclang -analyzer-disable-checker -Xclang security.insecureAPI.strcpy -Xclang -analyzer-checker -Xclang security.insecureAPI.vfork -iquote /Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-generated-files.hmap -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-own-target-headers.hmap -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-all-target-headers.hmap -iquote /Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-project-headers.hmap -I/Users/dustin/Source/CocoaChip/build/Release/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/DerivedSources/x86_64 -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/DerivedSources -F/Users/dustin/Source/CocoaChip/build/Release -include /var/folders/nn/s88k060x7016ccml2bc6f5_h0000gn/C/com.apple.DeveloperTools/5.0.2-5A3005/Xcode/SharedPrecompiledHeaders/CocoaChip-Prefix-dzmrdzscqkbvvrafvxsbjwbxtmlz/CocoaChip-Prefix.pch --analyze /Users/dustin/Source/CocoaChip/CocoaChip/CCChip8DisplayView.m -o /Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/StaticAnalyzer/CocoaChip/CocoaChip/normal/x86_64/CCChip8DisplayView.plist
475
+ )
476
+ SAMPLE_COMPILE_XIB = %Q(
477
+ CompileXIB CocoaChip/en.lproj/MainMenu.xib
478
+ cd /Users/dustin/Source/CocoaChip
479
+ setenv XCODE_DEVELOPER_USR_PATH /Applications/Xcode.app/Contents/Developer/usr/bin/..
480
+ /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --minimum-deployment-target 10.7 --output-format human-readable-text --compile /Users/dustin/Source/CocoaChip/build/Release/CocoaChip.app/Contents/Resources/en.lproj/MainMenu.nib /Users/dustin/Source/CocoaChip/CocoaChip/en.lproj/MainMenu.xib
481
+ )
482
+ SAMPLE_COMPILE_STORYBOARD = %Q(
483
+ CompileStoryboard sample/Main.storyboard
484
+ cd /Users/chipp/Developer/sample
485
+ export XCODE_DEVELOPER_USR_PATH=/Applications/Xcode.app/Contents/Developer/usr/bin/..
486
+ /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --target-device iphone --target-device ipad --errors --warnings --notices --module sample --minimum-deployment-target 7.0 --output-partial-info-plist /Users/chipp/Library/Developer/Xcode/DerivedData/sample-etjztiverddwaddrudeteewjzfxw/Build/Intermediates/ArchiveIntermediates/sample/IntermediateBuildFilesPath/sample.build/Release-iphoneos/sample.build/SJMetroPickerStoryboard-SBPartialInfo.plist --auto-activate-custom-fonts --output-format human-readable-text --compilation-directory /Users/chipp/Library/Developer/Xcode/DerivedData/sample-etjztiverddwaddrudeteewjzfxw/Build/Intermediates/ArchiveIntermediates/sample/InstallationBuildProductsLocation/Applications/sample.app /Users/chipp/Developer/sample/sample/Main.storyboard
487
+ )
488
+ SAMPLE_CODESIGN = %Q(
489
+ CodeSign build/Release/CocoaChip.app
490
+ cd /Users/dustin/Source/CocoaChip
491
+ setenv CODESIGN_ALLOCATE /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
492
+ Using code signing identity \"Mac Developer: John Smith (0123456789)\"
493
+ /usr/bin/codesign --force --sign 0123456789ABCDEF0123456789ABCDEF01234567 /Users/dustin/Source/CocoaChip/build/Release/CocoaChip.app
494
+ )
495
+ SAMPLE_CODESIGN_FRAMEWORK = %Q(
496
+ CodeSign build/Release/CocoaChipCore.framework/Versions/A
497
+ cd /Users/dustin/Source/CocoaChip
498
+ setenv CODESIGN_ALLOCATE /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
499
+ Using code signing identity "Mac Developer: John Smith (0123456789)"
500
+ /usr/bin/codesign --force --sign 0123456789ABCDEF0123456789ABCDEF01234567 /Users/dustin/Source/CocoaChip/build/Release/CocoaChipCore.framework/Versions/A
501
+ )
502
+ SAMPLE_PREPROCESS = %Q(
503
+ Preprocess build/CocoaChip.build/Release/CocoaChip.build/Preprocessed-Info.plist CocoaChip/CocoaChip-Info.plist
504
+ cd /Users/dustin/Source/CocoaChip
505
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -E -P -x c -Wno-trigraphs /Users/dustin/Source/CocoaChip/CocoaChip/CocoaChip-Info.plist -F/Users/dustin/Source/CocoaChip/build/Release -o /Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/Preprocessed-Info.plist
506
+ )
507
+ SAMPLE_PBXCP = %Q(
508
+ PBXCp build/Release/CocoaChipCore.framework build/Release/CocoaChip.app/Contents/Frameworks/CocoaChipCore.framework
509
+ cd /Users/dustin/Source/CocoaChip
510
+ builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-debug-symbols -strip-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks /Users/dustin/Source/CocoaChip/build/Release/CocoaChipCore.framework /Users/dustin/Source/CocoaChip/build/Release/CocoaChip.app/Contents/Frameworks
511
+ warning: skipping copy phase strip, binary is code signed: /Users/dustin/Source/CocoaChip/build/Release/CocoaChipCore.framework/Versions/A/CocoaChipCore
512
+ )
513
+
514
+ SAMPLE_SCREENSHOT_FILE = 'RACCommandSpec, line 80, hello xcpretty.png'
515
+ SAMPLE_UNRELATED_IMAGE_FILE = 'apple_raw.png'
516
+
517
+ ################################################################################
518
+ # ERRORS
519
+ ################################################################################
520
+
521
+ SAMPLE_PODS_ERROR = "error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation."
522
+
523
+ SAMPLE_COMPILE_ERROR = %Q(
524
+ /Users/musalj/code/OSS/SampleApp/SampleTest.m:12:59: error: expected identifier
525
+ [[thread.lastMessage should] equal:thread.];
526
+ ^
527
+ )
528
+
529
+ SAMPLE_FILE_MISSING_ERROR = %Q(
530
+ <unknown>:0: error: no such file or directory: '/Users/travis/build/supermarin/project/Classes/Class + Category/Two Words/MissingViewController.swift'
531
+ )
532
+
533
+ SAMPLE_CODESIGN_ERROR = %Q(
534
+ Code Sign error: No code signing identites found: No valid signing identities (i.e. certificate and private key pair) matching the team ID “CAT6HF57NJ” were found.
535
+ )
536
+
537
+ SAMPLE_CODESIGN_ERROR_NO_SPACES = %Q(
538
+ CodeSign error: code signing is required for product type 'Application' in SDK 'iOS 7.0'
539
+ )
540
+
541
+ SAMPLE_FATAL_COMPILE_ERROR = %Q(
542
+ In file included from /Users/musalj/code/OSS/SampleApp/Pods/SuperCoolPod/SuperAwesomeClass.m:12:
543
+ In file included from /Users/musalj/code/OSS/SampleApp/Pods/../LessCoolPod/LessCoolClass.h:9:
544
+ In file included from /Users/musalj/code/OSS/SampleApp/Pods/../LessCoolPod/EvenLessCoolClass.h:10:
545
+ /Users/musalj/code/OSS/SampleApp/Pods/Headers/LessCoolPod/SomeRandomClass.h:31:9: fatal error: 'SomeRandomHeader.h' file not found
546
+ #import "SomeRandomHeader.h"
547
+ ^
548
+ )
549
+
550
+ SAMPLE_FATAL_COMPILE_PCH_ERROR = %Q(
551
+ fatal error: file '/path/to/myproject/Pods/Pods-environment.h' has been modified since the precompiled header '/Users/hiroshi/Library/Developer/Xcode/DerivedData/MyProject-gfmuvpipjscewkdnqacgumhfarrd/Build/Intermediates/PrecompiledHeaders/MyProject-Prefix-dwjpvcnrlaydzmegejmcvrtcfkpf/MyProject-Prefix.pch.pch' was built
552
+ )
553
+
554
+ SAMPLE_FATAL_HEADER_ERROR = %Q(
555
+ fatal error: malformed or corrupted AST file: 'could not find file '/Users/mpv/dev/project/Crashlytics.framework/Headers/Crashlytics.h' referenced by AST file' note: after modifying system headers, please delete the module cache at '/Users/mpv/Library/Developer/Xcode/DerivedData/ModuleCache/M5WJ0FYE7N06'
556
+ )
557
+
558
+ SAMPLE_UNDEFINED_SYMBOLS = %Q(
559
+ Undefined symbols for architecture x86_64:
560
+ "_OBJC_CLASS_$_CABasicAnimation", referenced from:
561
+ objc-class-ref in ATZRadialProgressControl.o
562
+ ld: symbol(s) not found for architecture x86_64
563
+ )
564
+
565
+ SAMPLE_DUPLICATE_SYMBOLS = %Q(
566
+ duplicate symbol _OBJC_IVAR_$ClassName._ivarName in:
567
+ /Users/username/Library/Developer/Xcode/DerivedData/App-arcyyktezaigixbocjwfhsjllojz/Build/Intermediates/App.build/Debug-iphonesimulator/App.build/Objects-normal/i386/ClassName.o
568
+ /Users/username/Library/Developer/Xcode/DerivedData/App-arcyyktezaigixbocjwfhsjllojz/Build/Products/Debug-iphonesimulator/libPods.a(DuplicateClassName.o)
569
+ ld: 1 duplicate symbol for architecture i386
570
+ clang: error: linker command failed with exit code 1 (use -v to see invocation)
571
+ )
572
+
573
+ SAMPLE_BITCODE_LD = %Q(
574
+ ld: '/Users/.../GoogleAnalytics-iOS-SDK/libGoogleAnalyticsServices.a(TAGHit.o)' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture armv7
575
+ )
576
+
577
+ SAMPLE_LD_SYMBOLS_ERROR = 'ld: symbol(s) not found for architecture x86_64'
578
+ SAMPLE_LD_LIBRARY_ERROR = 'ld: library not found for -lPods-Yammer'
579
+
580
+ SAMPLE_CLANG_ERROR = 'clang: error: linker command failed with exit code 1 (use -v to see invocation)'
581
+
582
+ SAMPLE_COMPILE_ERROR_WITH_TILDES = %Q(
583
+ /Users/musalj/code/OSS/ObjectiveSugar/Example/ObjectiveSugarTests/NSSetTests.m:93:16: error: no visible @interface for 'NSArray' declares the selector 'shoulds'
584
+ }] shoulds] equal:@[ @"F458 Italia", @"Testarossa" ]];
585
+ ~~ ^~~~~~~
586
+ )
587
+
588
+
589
+ ################################################################################
590
+ # WARNINGS
591
+ ################################################################################
592
+
593
+ SAMPLE_FORMAT_WARNING = %Q(
594
+ /Users/supermarin/code/oss/ObjectiveSugar/Example/ObjectiveSugar/AppDelegate.m:19:31: warning: format specifies type 'id' but the argument has type 'int' [-Wformat]
595
+ NSLog(@"I HAZ %@ CATS", 1);
596
+ ~~ ^
597
+ %d
598
+ 1 warning generated.
599
+ )
600
+