Created
November 23, 2011 20:36
-
-
Save bvibber/1389823 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.... | |
CompileC build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/Objects-normal/armv6/Location.o Classes/Location.m normal armv6 objective-c com.apple.compilers.llvm.clang.1_0.compiler | |
cd /Users/brion/src/callback-ios/PhoneGapLib | |
setenv LANG en_US.US-ASCII | |
setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin" | |
/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/clang -x objective-c -arch armv6 -fmessage-length=0 -fdiagnostics-print-source-range-info -fdiagnostics-show-category=id -fdiagnostics-parseable-fixits -std=c99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wparentheses -Wswitch -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-shorten-64-to-32 -DPG_VERSION= -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk -Wno-sign-conversion -mthumb "-DIBOutlet=__attribute__((iboutlet))" "-DIBOutletCollection(ClassName)=__attribute__((iboutletcollection(ClassName)))" "-DIBAction=void)__attribute__((ibaction)" -miphoneos-version-min=3.0 -iquote /Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/PhoneGap-generated-files.hmap -I/Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/PhoneGap-own-target-headers.hmap -I/Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/PhoneGap-all-target-headers.hmap -iquote /Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/PhoneGap-project-headers.hmap -I/Users/brion/src/callback-ios/PhoneGapLib/build/Release-iphoneos/include -I/Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/DerivedSources/armv6 -I/Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/DerivedSources -F/Users/brion/src/callback-ios/PhoneGapLib/build/Release-iphoneos -F/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/Developer/Library/Frameworks -F/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/Developer/Library/Frameworks -MMD -MT dependencies -MF /Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/Objects-normal/armv6/Location.d -c /Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m -o /Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/Objects-normal/armv6/Location.o | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:185:5: error: expected identifier or '(' [1] | |
[self.locationManager stopUpdatingLocation]; | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:185:6: error: use of undeclared identifier 'self' [3] | |
[self.locationManager stopUpdatingLocation]; | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:186:5: error: expected identifier or '(' [1] | |
[self.locationManager startUpdatingLocation]; | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:186:6: error: use of undeclared identifier 'self' [3] | |
[self.locationManager startUpdatingLocation]; | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:187:5:{187:5-187:22}: warning: type specifier missing, defaults to 'int' [-Wimplicit-int,3] | |
__locationStarted = YES; | |
^~~~~~~~~~~~~~~~~ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:189:5: error: expected identifier or '(' [1] | |
if ([options objectForKey:kPGLocationDistanceFilterKey]) | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:189:31: error: unexpected '@' in program [1] | |
if ([options objectForKey:kPGLocationDistanceFilterKey]) | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:18:41: note: instantiated from: | |
#define kPGLocationDistanceFilterKey @"distanceFilter" | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:191:80: error: unexpected '@' in program [1] | |
CLLocationDistance distanceFilter = [(NSString *)[options objectForKey:kPGLocationDistanceFilterKey] doubleValue]; | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:18:41: note: instantiated from: | |
#define kPGLocationDistanceFilterKey @"distanceFilter" | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:192:9: error: unknown type name 'self' [1] | |
self.locationManager.distanceFilter = distanceFilter; | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:192:13: error: expected identifier or '(' [1] | |
self.locationManager.distanceFilter = distanceFilter; | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:193:5: error: expected external declaration [1] | |
} | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:195:5: error: expected identifier or '(' [1] | |
if ([options objectForKey:kPGLocationDesiredAccuracyKey]) | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:195:31: error: unexpected '@' in program [1] | |
if ([options objectForKey:kPGLocationDesiredAccuracyKey]) | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:16:41: note: instantiated from: | |
#define kPGLocationDesiredAccuracyKey @"desiredAccuracy" | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:197:70: error: unexpected '@' in program [1] | |
int desiredAccuracy_num = [(NSString *)[options objectForKey:kPGLocationDesiredAccuracyKey] integerValue]; | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:16:41: note: instantiated from: | |
#define kPGLocationDesiredAccuracyKey @"desiredAccuracy" | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:198:46:{198:46-198:69}: error: initializer element is not a compile-time constant [3] | |
CLLocationAccuracy desiredAccuracy = kCLLocationAccuracyBest; | |
^~~~~~~~~~~~~~~~~~~~~~~ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:200:9: error: expected identifier or '(' [1] | |
if (desiredAccuracy_num < 10) { | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:217:5: error: expected external declaration [1] | |
} | |
^ | |
/Users/brion/src/callback-ios/PhoneGapLib/Classes/Location.m:218:1: error: expected external declaration [1] | |
} | |
^ | |
1 warning and 17 errors generated. | |
CompileC build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/Objects-normal/armv6/NSData+Base64.o Classes/NSData+Base64.m normal armv6 objective-c com.apple.compilers.llvm.clang.1_0.compiler | |
cd /Users/brion/src/callback-ios/PhoneGapLib | |
setenv LANG en_US.US-ASCII | |
setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin" | |
/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/clang -x objective-c -arch armv6 -fmessage-length=0 -fdiagnostics-print-source-range-info -fdiagnostics-show-category=id -fdiagnostics-parseable-fixits -std=c99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wparentheses -Wswitch -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-shorten-64-to-32 -DPG_VERSION= -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk -Wno-sign-conversion -mthumb "-DIBOutlet=__attribute__((iboutlet))" "-DIBOutletCollection(ClassName)=__attribute__((iboutletcollection(ClassName)))" "-DIBAction=void)__attribute__((ibaction)" -miphoneos-version-min=3.0 -iquote /Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/PhoneGap-generated-files.hmap -I/Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/PhoneGap-own-target-headers.hmap -I/Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/PhoneGap-all-target-headers.hmap -iquote /Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/PhoneGap-project-headers.hmap -I/Users/brion/src/callback-ios/PhoneGapLib/build/Release-iphoneos/include -I/Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/DerivedSources/armv6 -I/Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/DerivedSources -F/Users/brion/src/callback-ios/PhoneGapLib/build/Release-iphoneos -F/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/Developer/Library/Frameworks -F/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/Developer/Library/Frameworks -MMD -MT dependencies -MF /Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/Objects-normal/armv6/NSData+Base64.d -c /Users/brion/src/callback-ios/PhoneGapLib/Classes/NSData+Base64.m -o /Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/Objects-normal/armv6/NSData+Base64.o | |
CompileC build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/Objects-normal/armv6/Notification.o Classes/Notification.m normal armv6 objective-c com.apple.compilers.llvm.clang.1_0.compiler | |
cd /Users/brion/src/callback-ios/PhoneGapLib | |
setenv LANG en_US.US-ASCII | |
setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin" | |
/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/clang -x objective-c -arch armv6 -fmessage-length=0 -fdiagnostics-print-source-range-info -fdiagnostics-show-category=id -fdiagnostics-parseable-fixits -std=c99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wparentheses -Wswitch -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-shorten-64-to-32 -DPG_VERSION= -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk -Wno-sign-conversion -mthumb "-DIBOutlet=__attribute__((iboutlet))" "-DIBOutletCollection(ClassName)=__attribute__((iboutletcollection(ClassName)))" "-DIBAction=void)__attribute__((ibaction)" -miphoneos-version-min=3.0 -iquote /Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/PhoneGap-generated-files.hmap -I/Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/PhoneGap-own-target-headers.hmap -I/Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/PhoneGap-all-target-headers.hmap -iquote /Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/PhoneGap-project-headers.hmap -I/Users/brion/src/callback-ios/PhoneGapLib/build/Release-iphoneos/include -I/Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/DerivedSources/armv6 -I/Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/DerivedSources -F/Users/brion/src/callback-ios/PhoneGapLib/build/Release-iphoneos -F/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/Developer/Library/Frameworks -F/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/Developer/Library/Frameworks -MMD -MT dependencies -MF /Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/Objects-normal/armv6/Notification.d -c /Users/brion/src/callback-ios/PhoneGapLib/Classes/Notification.m -o /Users/brion/src/callback-ios/PhoneGapLib/build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/Objects-normal/armv6/Notification.o | |
** BUILD FAILED ** | |
The following build commands failed: | |
CompileC build/PhoneGapLib.build/Release-iphoneos/PhoneGap.build/Objects-normal/armv6/Location.o Classes/Location.m normal armv6 objective-c com.apple.compilers.llvm.clang.1_0.compiler | |
(1 failure) | |
Error: xcodebuild failed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment