diff options
Diffstat (limited to 'Frameworks/SPMySQLFramework/build')
140 files changed, 12453 insertions, 0 deletions
diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers new file mode 120000 index 00000000..a177d2a6 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources new file mode 120000 index 00000000..953ee36f --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL new file mode 120000 index 00000000..3a3ed2eb --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL @@ -0,0 +1 @@ +Versions/Current/SPMySQL
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h new file mode 100644 index 00000000..332b2680 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h @@ -0,0 +1,49 @@ +// +// $Id$ +// +// Databases & Tables.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 11, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLConnection (Databases_and_Tables) + +// Database selection +- (BOOL)selectDatabase:(NSString *)aDatabase; + +// Database lists +- (NSArray *)databases; +- (NSArray *)databasesLike:(NSString *)nameLikeString; + +// Table lists +- (NSArray *)tables; +- (NSArray *)tablesLike:(NSString *)nameLikeString; +- (NSArray *)tablesFromDatabase:(NSString *)aDatabase; +- (NSArray *)tablesLike:(NSString *)nameLikeString fromDatabase:(NSString *)aDatabase; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h new file mode 100644 index 00000000..cf132fcf --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h @@ -0,0 +1,36 @@ +// +// $Id$ +// +// Delegate & Proxy.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLConnection (Delegate_and_Proxy) + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h new file mode 100644 index 00000000..bb5bf25d --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h @@ -0,0 +1,53 @@ +// +// $Id$ +// +// Encoding.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLConnection (Encoding) + +// Current connection encoding information +- (NSString *)encoding; +- (NSStringEncoding)stringEncoding; +- (BOOL)encodingUsesLatin1Transport; + +// Setting connection encoding +- (BOOL)setEncoding:(NSString *)theEncoding; +- (BOOL)setEncodingUsesLatin1Transport:(BOOL)useLatin1; + +// Encoding storage and restoration +- (void)storeEncodingForRestoration; +- (void)restoreStoredEncoding; + +// Encoding conversion ++ (NSStringEncoding)stringEncodingForMySQLCharset:(const char *)mysqlCharset; ++ (NSString *)mySQLCharsetForStringEncoding:(NSStringEncoding)aStringEncoding; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h new file mode 100644 index 00000000..20e1ddc9 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h @@ -0,0 +1,38 @@ +// +// $Id$ +// +// Field Definitions.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLResult (Field_Definitions) + +- (NSArray *)fieldDefinitions; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h new file mode 100644 index 00000000..faa667d8 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h @@ -0,0 +1,40 @@ +// +// $Id$ +// +// Max Packet Size.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLConnection (Max_Packet_Size) + +- (NSUInteger)maxQuerySize; +- (BOOL)isMaxQuerySizeEditable; +- (NSUInteger)setGlobalMaxQuerySize:(NSUInteger)newMaxSize; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h new file mode 100644 index 00000000..ff55f796 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h @@ -0,0 +1,103 @@ +// +// $Id$ +// +// Querying & Preparation.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLConnection (Querying_and_Preparation) + +// Data preparation +- (NSString *)escapeAndQuoteString:(NSString *)theString; +- (NSString *)escapeString:(NSString *)theString includingQuotes:(BOOL)includeQuotes; +- (NSString *)escapeAndQuoteData:(NSData *)theData; +- (NSString *)escapeData:(NSData *)theData includingQuotes:(BOOL)includeQuotes; + +// Queries +- (SPMySQLResult *)queryString:(NSString *)theQueryString; +- (SPMySQLFastStreamingResult *)streamingQueryString:(NSString *)theQueryString; +- (id)streamingQueryString:(NSString *)theQueryString useLowMemoryBlockingStreaming:(BOOL)fullStreaming; +- (id)queryString:(NSString *)theQueryString usingEncoding:(NSStringEncoding)theEncoding withResultType:(SPMySQLResultType)theReturnType; + +// Query information +- (unsigned long long)rowsAffectedByLastQuery; +- (unsigned long long)lastInsertID; + +// Connection and query error state +- (BOOL)queryErrored; +- (NSString *)lastErrorMessage; +- (NSUInteger)lastErrorID; ++ (BOOL)isErrorIDConnectionError:(NSUInteger)theErrorID; + +// Query cancellation +- (void)cancelCurrentQuery; +- (BOOL)lastQueryWasCancelled; +- (BOOL)lastQueryWasCancelledUsingReconnect; + +@end + +/** + * Set up static functions to allow fast calling with cached selectors + */ + +static inline id SPMySQLConnectionEscapeString(SPMySQLConnection* self, NSString *theString, BOOL encloseInQuotes) +{ + typedef id (*SPMySQLConnectionEscapeStringMethodPtr)(SPMySQLConnection*, SEL, NSString *, BOOL); + static SPMySQLConnectionEscapeStringMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(escapeString:includingQuotes:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionEscapeStringMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theString, encloseInQuotes); +} + +static inline id SPMySQLConnectionEscapeData(SPMySQLConnection* self, NSData *theData, BOOL encloseInQuotes) +{ + typedef id (*SPMySQLConnectionEscapeDataMethodPtr)(SPMySQLConnection*, SEL, NSData *, BOOL); + static SPMySQLConnectionEscapeDataMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(escapeData:includingQuotes:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionEscapeDataMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theData, encloseInQuotes); +} + +static inline id SPMySQLConnectionQueryString(SPMySQLConnection* self, NSString *theQueryString, NSStringEncoding theEncoding, SPMySQLResultType theReturnType) +{ + typedef id (*SPMySQLConnectionQueryStringMethodPtr)(SPMySQLConnection*, SEL, NSString *, NSStringEncoding, SPMySQLResultType); + static SPMySQLConnectionQueryStringMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(queryString:usingEncoding:withResultType:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionQueryStringMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theQueryString, theEncoding, theReturnType); +}
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h new file mode 100644 index 00000000..a9150f46 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h @@ -0,0 +1,62 @@ +// +// $Id$ +// +// SPMySQL.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 22, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + +@class SPMySQLConnection, SPMySQLResult, SPMySQLStreamingResult, SPMySQLFastStreamingResult; + +// Global include file for the framework. +// Constants +#import "SPMySQLConstants.h" + +// Required category additions +#import "SPMySQLStringAdditions.h" + +// MySQL Connection Delegate and Proxy protocols +#import "SPMySQLConnectionDelegate.h" +#import "SPMySQLConnectionProxy.h" + +// MySQL Connection class and public categories +#import "SPMySQLConnection.h" +#import "Delegate & Proxy.h" +#import "Databases & Tables.h" +#import "Max Packet Size.h" +#import "Querying & Preparation.h" +#import "Encoding.h" +#import "Server Info.h" + +// MySQL result set, streaming subclasses of same, and associated categories +#import "SPMySQLResult.h" +#import "SPMySQLStreamingResult.h" +#import "SPMySQLFastStreamingResult.h" +#import "Field Definitions.h" + +// Result data objects +#import "SPMySQLGeometryData.h"
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h new file mode 100644 index 00000000..db6dc0af --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h @@ -0,0 +1,177 @@ +// +// $Id$ +// +// SPMySQLConnection.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 8, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + +@interface SPMySQLConnection : NSObject { + + // Delegate + NSObject <SPMySQLConnectionDelegate> *delegate; + BOOL delegateSupportsWillQueryString; + BOOL delegateSupportsConnectionLost; + BOOL delegateQueryLogging; // Defaults to YES if protocol implemented + + // Basic connection details + NSString *host; + NSString *username; + NSString *password; + NSUInteger port; + BOOL useSocket; + NSString *socketPath; + + // SSL connection details + BOOL useSSL; + NSString *sslKeyFilePath; + NSString *sslCertificatePath; + NSString *sslCACertificatePath; + + // MySQL connection details and state + struct st_mysql *mySQLConnection; + SPMySQLConnectionState state; + BOOL connectedWithSSL; + BOOL userTriggeredDisconnect; + BOOL isReconnecting; + uint64_t initialConnectTime; + unsigned long mysqlConnectionThreadId; + + // Connection proxy + NSObject <SPMySQLConnectionProxy> *proxy; + SPMySQLConnectionProxyState previousProxyState; + BOOL proxyStateChangeNotificationsIgnored; + + // Connection lock to prevent non-thread-safe query misuse + NSConditionLock *connectionLock; + + // Currently selected database + NSString *database; + + // Delegate connection lost decisions + NSUInteger reconnectionRetryAttempts; + SPMySQLConnectionLostDecision lastDelegateDecisionForLostConnection; + NSLock *delegateDecisionLock; + + // Timeout and keep-alive + NSUInteger timeout; + BOOL useKeepAlive; + NSTimer *keepAliveTimer; + CGFloat keepAliveInterval; + uint64_t lastKeepAliveTime; + NSUInteger keepAlivePingFailures; + pthread_t keepAlivePingThread; + BOOL keepAlivePingThreadActive; + BOOL keepAliveLastPingSuccess; + BOOL keepAliveLastPingBlocked; + + // Encoding details - and also a record of any previous encoding to allow + // switching back and forth + NSString *encoding; + NSStringEncoding stringEncoding; + BOOL encodingUsesLatin1Transport; + NSString *previousEncoding; + BOOL previousEncodingUsesLatin1Transport; + + // Server details + NSString *serverVersionString; + + // Error state for the last query or connection state + NSUInteger queryErrorID; + NSString *queryErrorMessage; + + // Query details + unsigned long long lastQueryAffectedRowCount; + unsigned long long lastQueryInsertID; + + // Query cancellation details + BOOL lastQueryWasCancelled; + BOOL lastQueryWasCancelledUsingReconnect; + + // Timing details + uint64_t lastConnectionUsedTime; + double lastQueryExecutionTime; + + // Maximum query size + NSUInteger maxQuerySize; + BOOL maxQuerySizeIsEditable; + BOOL maxQuerySizeEditabilityChecked; + NSUInteger queryActionShouldRestoreMaxQuerySize; + + // Queries + BOOL retryQueriesOnConnectionFailure; +} + +#pragma mark - +#pragma mark Synthesized properties + +@property (readwrite, assign, nonatomic) NSObject <SPMySQLConnectionDelegate> *delegate; +@property (readwrite, assign, nonatomic) NSObject <SPMySQLConnectionProxy> *proxy; + +@property (readwrite, retain) NSString *host; +@property (readwrite, retain) NSString *username; +@property (readwrite, retain) NSString *password; +@property (readwrite, assign) NSUInteger port; +@property (readwrite, assign) BOOL useSocket; +@property (readwrite, retain) NSString *socketPath; + +@property (readwrite, assign) BOOL useSSL; +@property (readwrite, retain) NSString *sslKeyFilePath; +@property (readwrite, retain) NSString *sslCertificatePath; +@property (readwrite, retain) NSString *sslCACertificatePath; + +@property (readwrite, assign) NSUInteger timeout; +@property (readwrite, assign) BOOL useKeepAlive; +@property (readwrite, assign) CGFloat keepAliveInterval; + +@property (readonly) unsigned long mysqlConnectionThreadId; +@property (readwrite, assign) BOOL retryQueriesOnConnectionFailure; + +@property (readwrite, assign) BOOL delegateQueryLogging; + +#pragma mark - +#pragma mark Connection and disconnection + +- (BOOL)connect; +- (BOOL)reconnect; +- (void)disconnect; + +#pragma mark - +#pragma mark Connection state + +- (BOOL)isConnected; +- (BOOL)isConnectedViaSSL; +- (BOOL)checkConnection; +- (double)timeConnected; +- (BOOL)userTriggeredDisconnect; + +#pragma mark - +#pragma mark Connection utility + ++ (NSString *)findSocketPath; + +@end
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h new file mode 100644 index 00000000..f1a1f911 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h @@ -0,0 +1,106 @@ +// +// $Id$ +// +// SPMySQLConnectionDelegate.h +// SPMySQLFramework +// +// Created by Stuart Connolly (stuconnolly.com) on October 20, 2010. +// Copyright (c) 2010 Stuart Connolly. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + +@protocol SPMySQLConnectionDelegate <NSObject> +@optional + +/** + * Notifies the delegate that a query will be performed. + * + * @param query The query string that will be sent to the MySQL server + * @param connection The connection instance performing the query + */ +- (void)willQueryString:(NSString *)query connection:(id)connection; + +/** + * Notifies the delegate that a query that was just performed gave + * an error. + * + * @param error The query error, as a string + * @param connection The connection instance which received the error + */ +- (void)queryGaveError:(NSString *)error connection:(id)connection; + +/** + * Notifies the delegate that it should display the supplied error. + * The connection may sometimes want to notify the user directly + * about certain issues, and will use this method to allow the + * delegate to do so. + * + * @param title The title of the message to display to the user + * @param message The main text of the message to display to the user + */ +- (void)showErrorWithTitle:(NSString *)title message:(NSString *)message; + +/** + * Requests the keychain password for the connection. + * When a connection is being made to a server, it is best not to + * set the password on the class; instead, it should be kept within + * the secure store, and the other connection details (user, host) + * can be used to look it up and supplied on demand. + * + * @param connection The connection instance to supply the password for + */ +- (NSString *)keychainPasswordForConnection:(id)connection; + +/** + * Notifies the delegate that no underlying connection is available, + * typically when the connection has been asked to perform a query + * or some other action for which a connection must be present. + * Those actions will still return false or error states as appropriate, + * but the delegate may wish to perform actions as a result of a total + * loss of connection. + * + * @param connection The connection instance which has lost the connection to the host + */ +- (void)noConnectionAvailable:(id)connection; + +/** + * Notifies the delegate that although a SSL connection was requested, + * MySQL made the connection without using SSL. This can happen because + * the server connected to doesn't support SSL or had it disabled, or + * that insufficient details were provided to make the connection over + * SSL. + */ +- (void)connectionFellBackToNonSSL:(id)connection; + +/** + * Notifies the delegate that the connection has been temporarily lost, + * and asks the delegate for guidance on how to proceed. If the delegate + * does not implement this method, reconnections will automatically be + * attempted - up to a small limit of attempts. + * + * @param connection The connection instance that requires a decision on how to proceed + */ +- (SPMySQLConnectionLostDecision)connectionLost:(id)connection; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h new file mode 100644 index 00000000..afd7c95a --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h @@ -0,0 +1,77 @@ +// +// $Id$ +// +// SPMySQLConnectionProxy.h +// SPMySQLFramework +// +// Created by Stuart Connolly (stuconnolly.com) on July 2, 2009. +// Copyright (c) 2009 Stuart Connolly. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +/** + * Connection proxy state constants. + */ +typedef enum { + SPMySQLProxyIdle = 0, + SPMySQLProxyConnecting = 1, + SPMySQLProxyWaitingForAuth = 2, + SPMySQLProxyConnected = 3, + SPMySQLProxyForwardingFailed = 4 +} SPMySQLConnectionProxyState; + + +@protocol SPMySQLConnectionProxy <NSObject> + +/** + * All the methods for this protocol are required. + */ + +/** + * Connect the proxy. + */ +- (void)connect; + +/** + * Disconnect the proxy. + */ +- (void)disconnect; + +/** + * Get the current state of the proxy. + */ +- (SPMySQLConnectionProxyState)state; + +/** + * Get the local port being provided by the proxy. + */ +- (NSUInteger)localPort; + +/** + * Sets the method the proxy should call whenever the state of the connection changes. + */ +- (BOOL)setConnectionStateChangeSelector:(SEL)theStateChangeSelector delegate:(id)theDelegate; + +@end
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h new file mode 100644 index 00000000..6fb3d279 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h @@ -0,0 +1,76 @@ +// +// $Id$ +// +// SPMySQLConstants.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +// Connection state +typedef enum { + SPMySQLDisconnected = 0, + SPMySQLConnecting = 1, + SPMySQLConnected = 2, + SPMySQLDisconnecting = 3 +} SPMySQLConnectionState; + +// Connection lock state +typedef enum { + SPMySQLConnectionIdle = 0, + SPMySQLConnectionBusy = 1 +} SPMySQLConnectionLockState; + +// Decision on how to handle lost connections +// Connection check constants +typedef enum { + SPMySQLConnectionLostDisconnect = 0, + SPMySQLConnectionLostReconnect = 1 +} SPMySQLConnectionLostDecision; + +// Result set row types +typedef enum { + SPMySQLResultRowAsDefault = 0, + SPMySQLResultRowAsArray = 1, + SPMySQLResultRowAsDictionary = 2 +} SPMySQLResultRowType; + +// Result charset list +typedef struct { + NSUInteger nr; + const char *name; + const char *collation; + NSUInteger char_minlen; + NSUInteger char_maxlen; +} SPMySQLResultCharset; + +// Query result types +typedef enum { + SPMySQLResultAsResult = 0, + SPMySQLResultAsFastStreamingResult = 1, + SPMySQLResultAsLowMemStreamingResult = 2 +} SPMySQLResultType;
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h new file mode 100644 index 00000000..a4f07cdd --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h @@ -0,0 +1,47 @@ +// +// $Id$ +// +// SPMySQLFastStreamingResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLFastStreamingResult : SPMySQLStreamingResult { + + // Linked list setup + struct st_spmysqlstreamingrowdata *currentDataStoreEntry; + struct st_spmysqlstreamingrowdata *lastDataStoreEntry; + + // Additional counts and memory length tracking + NSUInteger processedRowCount; + + // Thread safety + pthread_mutex_t dataLock; +} + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h new file mode 100644 index 00000000..e1313032 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h @@ -0,0 +1,53 @@ +// +// $Id$ +// +// SPMySQLGeometryData.h +// sequel-pro +// +// Created by Hans-Jörg Bibiko on October 07, 2010 +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLGeometryData : NSObject +{ + // Holds the WKB bytes coming from SQL server + Byte *geoBuffer; + + // Holds the buffer length + NSUInteger bufferLength; + +} + +- (id)initWithBytes:(const void *)geoData length:(NSUInteger)length; ++ (id)dataWithBytes:(const void *)geoData length:(NSUInteger)length; +- (NSString *)description; +- (NSUInteger)length; +- (NSData *)data; +- (NSString *)wktString; +- (NSDictionary *)coordinates; +- (NSInteger)wkbType; +- (NSString *)wktType; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h new file mode 100644 index 00000000..baddf8aa --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h @@ -0,0 +1,120 @@ +// +// $Id$ +// +// SPMySQLResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 26, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +typedef enum { + SPMySQLResultFieldAsUnhandled = 0, + SPMySQLResultFieldAsString = 1, + SPMySQLResultFieldAsStringOrBlob = 2, + SPMySQLResultFieldAsBlob = 3, + SPMySQLResultFieldAsBit = 4, + SPMySQLResultFieldAsGeometry = 5, + SPMySQLResultFieldAsNull = 6 +} SPMySQLResultFieldProcessor; + +@interface SPMySQLResult : NSObject <NSFastEnumeration> { + + // Wrapped MySQL result set and its encoding + struct st_mysql_res *resultSet; + NSStringEncoding stringEncoding; + + // Number of fields in the result set, and the field names and information + NSUInteger numberOfFields; + struct st_mysql_field *fieldDefinitions; + unsigned int *fieldTypes; + NSString **fieldNames; + + // Number of rows in the result set and an internal data position counter + unsigned long long numberOfRows; + unsigned long long currentRowIndex; + + // How long it took to execute the query that produced this result + double queryExecutionTime; + + // The target result set type for fast enumeration and unspecified row retrieval + SPMySQLResultRowType defaultRowReturnType; + + // Whether all data should be returned as strings - useful for working with some older server types + BOOL returnDataAsStrings; +} + +// Master init method +- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding; + +// Result set information +- (NSUInteger)numberOfFields; +- (unsigned long long)numberOfRows; + +// Column information +- (NSArray *)fieldNames; + +// Data retrieval (note that fast enumeration is also supported, using instance-default format) +- (void)seekToRow:(unsigned long long)targetRow; +- (id)getRow; +- (NSArray *)getRowAsArray; +- (NSDictionary *)getRowAsDictionary; +- (id)getRowAsType:(SPMySQLResultRowType)theType; + +// Data conversion ++ (NSString *)bitStringWithBytes:(const char *)bytes length:(NSUInteger)length padToLength:(NSUInteger)padLength; + +#pragma mark - +#pragma mark Synthesized properties + +/** + * Set whether the result should return data types as strings. This may be useful + * for queries where the result may be returned in either string or data form, but + * will be converted to string for display and use anyway. + * Note that certain MySQL versions also return data types for strings - eg SHOW + * commands like SHOW CREATE TABLE or SHOW VARIABLES, and this conversion can be + * necessary there. + */ +@property (readwrite, assign) BOOL returnDataAsStrings; + +@property (readwrite, assign) SPMySQLResultRowType defaultRowReturnType; + +@end + +/** + * Set up a static function to allow fast calling with cached selectors + */ +static inline id SPMySQLResultGetRow(SPMySQLResult* self, SPMySQLResultRowType rowType) +{ + typedef id (*SPMySQLResultGetRowMethodPtr)(SPMySQLResult*, SEL, SPMySQLResultRowType); + static SPMySQLResultGetRowMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(getRowAsType:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLResultGetRowMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, rowType); +}
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h new file mode 100644 index 00000000..5abb85db --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h @@ -0,0 +1,54 @@ +// +// $Id$ +// +// SPMySQLStreamingResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 18, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + +@interface SPMySQLStreamingResult : SPMySQLResult { + + // Keep a link to the parent connection for locking purposes + SPMySQLConnection *parentConnection; + + // Streaming result information and tracking + BOOL connectionUnlocked; + BOOL dataDownloaded; + + // Counts and memory length tracking + NSUInteger downloadedRowCount; + + IMP isConnectedPtr; + SEL isConnectedSelector; +} + +- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding connection:(SPMySQLConnection *)theConnection; + +// Allow result fetching to be cancelled +- (void)cancelResultLoad; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h new file mode 100644 index 00000000..d8f5f183 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h @@ -0,0 +1,50 @@ +// +// $Id$ +// +// Server Info.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + +@class SPMySQLResult; + +@interface SPMySQLConnection (Server_Info) + +// Server version information +- (NSString *)serverVersionString; +- (NSUInteger)serverMajorVersion; +- (NSUInteger)serverMinorVersion; +- (NSUInteger)serverReleaseVersion; + +// Server version comparisons +- (BOOL)serverVersionIsGreaterThanOrEqualTo:(NSUInteger)aMajorVersion minorVersion:(NSUInteger)aMinorVersion releaseVersion:(NSUInteger)aReleaseVersion; + +// Server tasks & processes +- (SPMySQLResult *)listProcesses; +- (BOOL)killQueryOnThreadID:(unsigned long)theThreadID; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings Binary files differnew file mode 100644 index 00000000..dea12de4 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist new file mode 100644 index 00000000..6f7e4285 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>BuildMachineOSBuild</key> + <string>11D50b</string> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>SPMySQL</string> + <key>CFBundleIdentifier</key> + <string>com.yourcompany.SPMySQL</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>SPMySQL</string> + <key>CFBundlePackageType</key> + <string>FMWK</string> + <key>CFBundleShortVersionString</key> + <string>1.0</string> + <key>CFBundleSignature</key> + <string>SPDT</string> + <key>CFBundleVersion</key> + <string>1</string> + <key>DTCompiler</key> + <string>com.apple.compilers.llvm.clang.1_0</string> + <key>DTPlatformBuild</key> + <string>10M2518</string> + <key>DTPlatformVersion</key> + <string>PG</string> + <key>DTSDKBuild</key> + <string>9L31a</string> + <key>DTSDKName</key> + <string>macosx10.5</string> + <key>DTXcode</key> + <string>0400</string> + <key>DTXcodeBuild</key> + <string>10M2518</string> +</dict> +</plist> diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL Binary files differnew file mode 100755 index 00000000..8b1d8803 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL diff --git a/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current new file mode 120000 index 00000000..8c7e5a66 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current @@ -0,0 +1 @@ +A
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Headers b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Headers new file mode 120000 index 00000000..a177d2a6 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Resources b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Resources new file mode 120000 index 00000000..953ee36f --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL new file mode 120000 index 00000000..3a3ed2eb --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL @@ -0,0 +1 @@ +Versions/Current/SPMySQL
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h new file mode 100644 index 00000000..332b2680 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h @@ -0,0 +1,49 @@ +// +// $Id$ +// +// Databases & Tables.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 11, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLConnection (Databases_and_Tables) + +// Database selection +- (BOOL)selectDatabase:(NSString *)aDatabase; + +// Database lists +- (NSArray *)databases; +- (NSArray *)databasesLike:(NSString *)nameLikeString; + +// Table lists +- (NSArray *)tables; +- (NSArray *)tablesLike:(NSString *)nameLikeString; +- (NSArray *)tablesFromDatabase:(NSString *)aDatabase; +- (NSArray *)tablesLike:(NSString *)nameLikeString fromDatabase:(NSString *)aDatabase; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h new file mode 100644 index 00000000..cf132fcf --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h @@ -0,0 +1,36 @@ +// +// $Id$ +// +// Delegate & Proxy.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLConnection (Delegate_and_Proxy) + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h new file mode 100644 index 00000000..bb5bf25d --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h @@ -0,0 +1,53 @@ +// +// $Id$ +// +// Encoding.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLConnection (Encoding) + +// Current connection encoding information +- (NSString *)encoding; +- (NSStringEncoding)stringEncoding; +- (BOOL)encodingUsesLatin1Transport; + +// Setting connection encoding +- (BOOL)setEncoding:(NSString *)theEncoding; +- (BOOL)setEncodingUsesLatin1Transport:(BOOL)useLatin1; + +// Encoding storage and restoration +- (void)storeEncodingForRestoration; +- (void)restoreStoredEncoding; + +// Encoding conversion ++ (NSStringEncoding)stringEncodingForMySQLCharset:(const char *)mysqlCharset; ++ (NSString *)mySQLCharsetForStringEncoding:(NSStringEncoding)aStringEncoding; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h new file mode 100644 index 00000000..20e1ddc9 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h @@ -0,0 +1,38 @@ +// +// $Id$ +// +// Field Definitions.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLResult (Field_Definitions) + +- (NSArray *)fieldDefinitions; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h new file mode 100644 index 00000000..faa667d8 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h @@ -0,0 +1,40 @@ +// +// $Id$ +// +// Max Packet Size.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 9, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLConnection (Max_Packet_Size) + +- (NSUInteger)maxQuerySize; +- (BOOL)isMaxQuerySizeEditable; +- (NSUInteger)setGlobalMaxQuerySize:(NSUInteger)newMaxSize; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h new file mode 100644 index 00000000..ff55f796 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h @@ -0,0 +1,103 @@ +// +// $Id$ +// +// Querying & Preparation.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLConnection (Querying_and_Preparation) + +// Data preparation +- (NSString *)escapeAndQuoteString:(NSString *)theString; +- (NSString *)escapeString:(NSString *)theString includingQuotes:(BOOL)includeQuotes; +- (NSString *)escapeAndQuoteData:(NSData *)theData; +- (NSString *)escapeData:(NSData *)theData includingQuotes:(BOOL)includeQuotes; + +// Queries +- (SPMySQLResult *)queryString:(NSString *)theQueryString; +- (SPMySQLFastStreamingResult *)streamingQueryString:(NSString *)theQueryString; +- (id)streamingQueryString:(NSString *)theQueryString useLowMemoryBlockingStreaming:(BOOL)fullStreaming; +- (id)queryString:(NSString *)theQueryString usingEncoding:(NSStringEncoding)theEncoding withResultType:(SPMySQLResultType)theReturnType; + +// Query information +- (unsigned long long)rowsAffectedByLastQuery; +- (unsigned long long)lastInsertID; + +// Connection and query error state +- (BOOL)queryErrored; +- (NSString *)lastErrorMessage; +- (NSUInteger)lastErrorID; ++ (BOOL)isErrorIDConnectionError:(NSUInteger)theErrorID; + +// Query cancellation +- (void)cancelCurrentQuery; +- (BOOL)lastQueryWasCancelled; +- (BOOL)lastQueryWasCancelledUsingReconnect; + +@end + +/** + * Set up static functions to allow fast calling with cached selectors + */ + +static inline id SPMySQLConnectionEscapeString(SPMySQLConnection* self, NSString *theString, BOOL encloseInQuotes) +{ + typedef id (*SPMySQLConnectionEscapeStringMethodPtr)(SPMySQLConnection*, SEL, NSString *, BOOL); + static SPMySQLConnectionEscapeStringMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(escapeString:includingQuotes:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionEscapeStringMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theString, encloseInQuotes); +} + +static inline id SPMySQLConnectionEscapeData(SPMySQLConnection* self, NSData *theData, BOOL encloseInQuotes) +{ + typedef id (*SPMySQLConnectionEscapeDataMethodPtr)(SPMySQLConnection*, SEL, NSData *, BOOL); + static SPMySQLConnectionEscapeDataMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(escapeData:includingQuotes:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionEscapeDataMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theData, encloseInQuotes); +} + +static inline id SPMySQLConnectionQueryString(SPMySQLConnection* self, NSString *theQueryString, NSStringEncoding theEncoding, SPMySQLResultType theReturnType) +{ + typedef id (*SPMySQLConnectionQueryStringMethodPtr)(SPMySQLConnection*, SEL, NSString *, NSStringEncoding, SPMySQLResultType); + static SPMySQLConnectionQueryStringMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(queryString:usingEncoding:withResultType:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLConnectionQueryStringMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, theQueryString, theEncoding, theReturnType); +}
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h new file mode 100644 index 00000000..a9150f46 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h @@ -0,0 +1,62 @@ +// +// $Id$ +// +// SPMySQL.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 22, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + +@class SPMySQLConnection, SPMySQLResult, SPMySQLStreamingResult, SPMySQLFastStreamingResult; + +// Global include file for the framework. +// Constants +#import "SPMySQLConstants.h" + +// Required category additions +#import "SPMySQLStringAdditions.h" + +// MySQL Connection Delegate and Proxy protocols +#import "SPMySQLConnectionDelegate.h" +#import "SPMySQLConnectionProxy.h" + +// MySQL Connection class and public categories +#import "SPMySQLConnection.h" +#import "Delegate & Proxy.h" +#import "Databases & Tables.h" +#import "Max Packet Size.h" +#import "Querying & Preparation.h" +#import "Encoding.h" +#import "Server Info.h" + +// MySQL result set, streaming subclasses of same, and associated categories +#import "SPMySQLResult.h" +#import "SPMySQLStreamingResult.h" +#import "SPMySQLFastStreamingResult.h" +#import "Field Definitions.h" + +// Result data objects +#import "SPMySQLGeometryData.h"
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h new file mode 100644 index 00000000..db6dc0af --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h @@ -0,0 +1,177 @@ +// +// $Id$ +// +// SPMySQLConnection.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 8, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + +@interface SPMySQLConnection : NSObject { + + // Delegate + NSObject <SPMySQLConnectionDelegate> *delegate; + BOOL delegateSupportsWillQueryString; + BOOL delegateSupportsConnectionLost; + BOOL delegateQueryLogging; // Defaults to YES if protocol implemented + + // Basic connection details + NSString *host; + NSString *username; + NSString *password; + NSUInteger port; + BOOL useSocket; + NSString *socketPath; + + // SSL connection details + BOOL useSSL; + NSString *sslKeyFilePath; + NSString *sslCertificatePath; + NSString *sslCACertificatePath; + + // MySQL connection details and state + struct st_mysql *mySQLConnection; + SPMySQLConnectionState state; + BOOL connectedWithSSL; + BOOL userTriggeredDisconnect; + BOOL isReconnecting; + uint64_t initialConnectTime; + unsigned long mysqlConnectionThreadId; + + // Connection proxy + NSObject <SPMySQLConnectionProxy> *proxy; + SPMySQLConnectionProxyState previousProxyState; + BOOL proxyStateChangeNotificationsIgnored; + + // Connection lock to prevent non-thread-safe query misuse + NSConditionLock *connectionLock; + + // Currently selected database + NSString *database; + + // Delegate connection lost decisions + NSUInteger reconnectionRetryAttempts; + SPMySQLConnectionLostDecision lastDelegateDecisionForLostConnection; + NSLock *delegateDecisionLock; + + // Timeout and keep-alive + NSUInteger timeout; + BOOL useKeepAlive; + NSTimer *keepAliveTimer; + CGFloat keepAliveInterval; + uint64_t lastKeepAliveTime; + NSUInteger keepAlivePingFailures; + pthread_t keepAlivePingThread; + BOOL keepAlivePingThreadActive; + BOOL keepAliveLastPingSuccess; + BOOL keepAliveLastPingBlocked; + + // Encoding details - and also a record of any previous encoding to allow + // switching back and forth + NSString *encoding; + NSStringEncoding stringEncoding; + BOOL encodingUsesLatin1Transport; + NSString *previousEncoding; + BOOL previousEncodingUsesLatin1Transport; + + // Server details + NSString *serverVersionString; + + // Error state for the last query or connection state + NSUInteger queryErrorID; + NSString *queryErrorMessage; + + // Query details + unsigned long long lastQueryAffectedRowCount; + unsigned long long lastQueryInsertID; + + // Query cancellation details + BOOL lastQueryWasCancelled; + BOOL lastQueryWasCancelledUsingReconnect; + + // Timing details + uint64_t lastConnectionUsedTime; + double lastQueryExecutionTime; + + // Maximum query size + NSUInteger maxQuerySize; + BOOL maxQuerySizeIsEditable; + BOOL maxQuerySizeEditabilityChecked; + NSUInteger queryActionShouldRestoreMaxQuerySize; + + // Queries + BOOL retryQueriesOnConnectionFailure; +} + +#pragma mark - +#pragma mark Synthesized properties + +@property (readwrite, assign, nonatomic) NSObject <SPMySQLConnectionDelegate> *delegate; +@property (readwrite, assign, nonatomic) NSObject <SPMySQLConnectionProxy> *proxy; + +@property (readwrite, retain) NSString *host; +@property (readwrite, retain) NSString *username; +@property (readwrite, retain) NSString *password; +@property (readwrite, assign) NSUInteger port; +@property (readwrite, assign) BOOL useSocket; +@property (readwrite, retain) NSString *socketPath; + +@property (readwrite, assign) BOOL useSSL; +@property (readwrite, retain) NSString *sslKeyFilePath; +@property (readwrite, retain) NSString *sslCertificatePath; +@property (readwrite, retain) NSString *sslCACertificatePath; + +@property (readwrite, assign) NSUInteger timeout; +@property (readwrite, assign) BOOL useKeepAlive; +@property (readwrite, assign) CGFloat keepAliveInterval; + +@property (readonly) unsigned long mysqlConnectionThreadId; +@property (readwrite, assign) BOOL retryQueriesOnConnectionFailure; + +@property (readwrite, assign) BOOL delegateQueryLogging; + +#pragma mark - +#pragma mark Connection and disconnection + +- (BOOL)connect; +- (BOOL)reconnect; +- (void)disconnect; + +#pragma mark - +#pragma mark Connection state + +- (BOOL)isConnected; +- (BOOL)isConnectedViaSSL; +- (BOOL)checkConnection; +- (double)timeConnected; +- (BOOL)userTriggeredDisconnect; + +#pragma mark - +#pragma mark Connection utility + ++ (NSString *)findSocketPath; + +@end
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h new file mode 100644 index 00000000..f1a1f911 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h @@ -0,0 +1,106 @@ +// +// $Id$ +// +// SPMySQLConnectionDelegate.h +// SPMySQLFramework +// +// Created by Stuart Connolly (stuconnolly.com) on October 20, 2010. +// Copyright (c) 2010 Stuart Connolly. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + +@protocol SPMySQLConnectionDelegate <NSObject> +@optional + +/** + * Notifies the delegate that a query will be performed. + * + * @param query The query string that will be sent to the MySQL server + * @param connection The connection instance performing the query + */ +- (void)willQueryString:(NSString *)query connection:(id)connection; + +/** + * Notifies the delegate that a query that was just performed gave + * an error. + * + * @param error The query error, as a string + * @param connection The connection instance which received the error + */ +- (void)queryGaveError:(NSString *)error connection:(id)connection; + +/** + * Notifies the delegate that it should display the supplied error. + * The connection may sometimes want to notify the user directly + * about certain issues, and will use this method to allow the + * delegate to do so. + * + * @param title The title of the message to display to the user + * @param message The main text of the message to display to the user + */ +- (void)showErrorWithTitle:(NSString *)title message:(NSString *)message; + +/** + * Requests the keychain password for the connection. + * When a connection is being made to a server, it is best not to + * set the password on the class; instead, it should be kept within + * the secure store, and the other connection details (user, host) + * can be used to look it up and supplied on demand. + * + * @param connection The connection instance to supply the password for + */ +- (NSString *)keychainPasswordForConnection:(id)connection; + +/** + * Notifies the delegate that no underlying connection is available, + * typically when the connection has been asked to perform a query + * or some other action for which a connection must be present. + * Those actions will still return false or error states as appropriate, + * but the delegate may wish to perform actions as a result of a total + * loss of connection. + * + * @param connection The connection instance which has lost the connection to the host + */ +- (void)noConnectionAvailable:(id)connection; + +/** + * Notifies the delegate that although a SSL connection was requested, + * MySQL made the connection without using SSL. This can happen because + * the server connected to doesn't support SSL or had it disabled, or + * that insufficient details were provided to make the connection over + * SSL. + */ +- (void)connectionFellBackToNonSSL:(id)connection; + +/** + * Notifies the delegate that the connection has been temporarily lost, + * and asks the delegate for guidance on how to proceed. If the delegate + * does not implement this method, reconnections will automatically be + * attempted - up to a small limit of attempts. + * + * @param connection The connection instance that requires a decision on how to proceed + */ +- (SPMySQLConnectionLostDecision)connectionLost:(id)connection; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h new file mode 100644 index 00000000..afd7c95a --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h @@ -0,0 +1,77 @@ +// +// $Id$ +// +// SPMySQLConnectionProxy.h +// SPMySQLFramework +// +// Created by Stuart Connolly (stuconnolly.com) on July 2, 2009. +// Copyright (c) 2009 Stuart Connolly. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +/** + * Connection proxy state constants. + */ +typedef enum { + SPMySQLProxyIdle = 0, + SPMySQLProxyConnecting = 1, + SPMySQLProxyWaitingForAuth = 2, + SPMySQLProxyConnected = 3, + SPMySQLProxyForwardingFailed = 4 +} SPMySQLConnectionProxyState; + + +@protocol SPMySQLConnectionProxy <NSObject> + +/** + * All the methods for this protocol are required. + */ + +/** + * Connect the proxy. + */ +- (void)connect; + +/** + * Disconnect the proxy. + */ +- (void)disconnect; + +/** + * Get the current state of the proxy. + */ +- (SPMySQLConnectionProxyState)state; + +/** + * Get the local port being provided by the proxy. + */ +- (NSUInteger)localPort; + +/** + * Sets the method the proxy should call whenever the state of the connection changes. + */ +- (BOOL)setConnectionStateChangeSelector:(SEL)theStateChangeSelector delegate:(id)theDelegate; + +@end
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h new file mode 100644 index 00000000..6fb3d279 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h @@ -0,0 +1,76 @@ +// +// $Id$ +// +// SPMySQLConstants.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +// Connection state +typedef enum { + SPMySQLDisconnected = 0, + SPMySQLConnecting = 1, + SPMySQLConnected = 2, + SPMySQLDisconnecting = 3 +} SPMySQLConnectionState; + +// Connection lock state +typedef enum { + SPMySQLConnectionIdle = 0, + SPMySQLConnectionBusy = 1 +} SPMySQLConnectionLockState; + +// Decision on how to handle lost connections +// Connection check constants +typedef enum { + SPMySQLConnectionLostDisconnect = 0, + SPMySQLConnectionLostReconnect = 1 +} SPMySQLConnectionLostDecision; + +// Result set row types +typedef enum { + SPMySQLResultRowAsDefault = 0, + SPMySQLResultRowAsArray = 1, + SPMySQLResultRowAsDictionary = 2 +} SPMySQLResultRowType; + +// Result charset list +typedef struct { + NSUInteger nr; + const char *name; + const char *collation; + NSUInteger char_minlen; + NSUInteger char_maxlen; +} SPMySQLResultCharset; + +// Query result types +typedef enum { + SPMySQLResultAsResult = 0, + SPMySQLResultAsFastStreamingResult = 1, + SPMySQLResultAsLowMemStreamingResult = 2 +} SPMySQLResultType;
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h new file mode 100644 index 00000000..a4f07cdd --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h @@ -0,0 +1,47 @@ +// +// $Id$ +// +// SPMySQLFastStreamingResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 2, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLFastStreamingResult : SPMySQLStreamingResult { + + // Linked list setup + struct st_spmysqlstreamingrowdata *currentDataStoreEntry; + struct st_spmysqlstreamingrowdata *lastDataStoreEntry; + + // Additional counts and memory length tracking + NSUInteger processedRowCount; + + // Thread safety + pthread_mutex_t dataLock; +} + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h new file mode 100644 index 00000000..e1313032 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h @@ -0,0 +1,53 @@ +// +// $Id$ +// +// SPMySQLGeometryData.h +// sequel-pro +// +// Created by Hans-Jörg Bibiko on October 07, 2010 +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface SPMySQLGeometryData : NSObject +{ + // Holds the WKB bytes coming from SQL server + Byte *geoBuffer; + + // Holds the buffer length + NSUInteger bufferLength; + +} + +- (id)initWithBytes:(const void *)geoData length:(NSUInteger)length; ++ (id)dataWithBytes:(const void *)geoData length:(NSUInteger)length; +- (NSString *)description; +- (NSUInteger)length; +- (NSData *)data; +- (NSString *)wktString; +- (NSDictionary *)coordinates; +- (NSInteger)wkbType; +- (NSString *)wktType; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h new file mode 100644 index 00000000..baddf8aa --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h @@ -0,0 +1,120 @@ +// +// $Id$ +// +// SPMySQLResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 26, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + + +typedef enum { + SPMySQLResultFieldAsUnhandled = 0, + SPMySQLResultFieldAsString = 1, + SPMySQLResultFieldAsStringOrBlob = 2, + SPMySQLResultFieldAsBlob = 3, + SPMySQLResultFieldAsBit = 4, + SPMySQLResultFieldAsGeometry = 5, + SPMySQLResultFieldAsNull = 6 +} SPMySQLResultFieldProcessor; + +@interface SPMySQLResult : NSObject <NSFastEnumeration> { + + // Wrapped MySQL result set and its encoding + struct st_mysql_res *resultSet; + NSStringEncoding stringEncoding; + + // Number of fields in the result set, and the field names and information + NSUInteger numberOfFields; + struct st_mysql_field *fieldDefinitions; + unsigned int *fieldTypes; + NSString **fieldNames; + + // Number of rows in the result set and an internal data position counter + unsigned long long numberOfRows; + unsigned long long currentRowIndex; + + // How long it took to execute the query that produced this result + double queryExecutionTime; + + // The target result set type for fast enumeration and unspecified row retrieval + SPMySQLResultRowType defaultRowReturnType; + + // Whether all data should be returned as strings - useful for working with some older server types + BOOL returnDataAsStrings; +} + +// Master init method +- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding; + +// Result set information +- (NSUInteger)numberOfFields; +- (unsigned long long)numberOfRows; + +// Column information +- (NSArray *)fieldNames; + +// Data retrieval (note that fast enumeration is also supported, using instance-default format) +- (void)seekToRow:(unsigned long long)targetRow; +- (id)getRow; +- (NSArray *)getRowAsArray; +- (NSDictionary *)getRowAsDictionary; +- (id)getRowAsType:(SPMySQLResultRowType)theType; + +// Data conversion ++ (NSString *)bitStringWithBytes:(const char *)bytes length:(NSUInteger)length padToLength:(NSUInteger)padLength; + +#pragma mark - +#pragma mark Synthesized properties + +/** + * Set whether the result should return data types as strings. This may be useful + * for queries where the result may be returned in either string or data form, but + * will be converted to string for display and use anyway. + * Note that certain MySQL versions also return data types for strings - eg SHOW + * commands like SHOW CREATE TABLE or SHOW VARIABLES, and this conversion can be + * necessary there. + */ +@property (readwrite, assign) BOOL returnDataAsStrings; + +@property (readwrite, assign) SPMySQLResultRowType defaultRowReturnType; + +@end + +/** + * Set up a static function to allow fast calling with cached selectors + */ +static inline id SPMySQLResultGetRow(SPMySQLResult* self, SPMySQLResultRowType rowType) +{ + typedef id (*SPMySQLResultGetRowMethodPtr)(SPMySQLResult*, SEL, SPMySQLResultRowType); + static SPMySQLResultGetRowMethodPtr cachedMethodPointer; + static SEL cachedSelector; + + if (!cachedSelector) cachedSelector = @selector(getRowAsType:); + if (!cachedMethodPointer) cachedMethodPointer = (SPMySQLResultGetRowMethodPtr)[self methodForSelector:cachedSelector]; + + return cachedMethodPointer(self, cachedSelector, rowType); +}
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h new file mode 100644 index 00000000..5abb85db --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h @@ -0,0 +1,54 @@ +// +// $Id$ +// +// SPMySQLStreamingResult.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on February 18, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + +@interface SPMySQLStreamingResult : SPMySQLResult { + + // Keep a link to the parent connection for locking purposes + SPMySQLConnection *parentConnection; + + // Streaming result information and tracking + BOOL connectionUnlocked; + BOOL dataDownloaded; + + // Counts and memory length tracking + NSUInteger downloadedRowCount; + + IMP isConnectedPtr; + SEL isConnectedSelector; +} + +- (id)initWithMySQLResult:(void *)theResult stringEncoding:(NSStringEncoding)theStringEncoding connection:(SPMySQLConnection *)theConnection; + +// Allow result fetching to be cancelled +- (void)cancelResultLoad; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h new file mode 100644 index 00000000..d8f5f183 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h @@ -0,0 +1,50 @@ +// +// $Id$ +// +// Server Info.h +// SPMySQLFramework +// +// Created by Rowan Beentje (rowan.beent.je) on January 14, 2012 +// Copyright (c) 2012 Rowan Beentje. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +// +// More info at <http://code.google.com/p/sequel-pro/> + +@class SPMySQLResult; + +@interface SPMySQLConnection (Server_Info) + +// Server version information +- (NSString *)serverVersionString; +- (NSUInteger)serverMajorVersion; +- (NSUInteger)serverMinorVersion; +- (NSUInteger)serverReleaseVersion; + +// Server version comparisons +- (BOOL)serverVersionIsGreaterThanOrEqualTo:(NSUInteger)aMajorVersion minorVersion:(NSUInteger)aMinorVersion releaseVersion:(NSUInteger)aReleaseVersion; + +// Server tasks & processes +- (SPMySQLResult *)listProcesses; +- (BOOL)killQueryOnThreadID:(unsigned long)theThreadID; + +@end diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings Binary files differnew file mode 100644 index 00000000..dea12de4 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist new file mode 100644 index 00000000..6f7e4285 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>BuildMachineOSBuild</key> + <string>11D50b</string> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>SPMySQL</string> + <key>CFBundleIdentifier</key> + <string>com.yourcompany.SPMySQL</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>SPMySQL</string> + <key>CFBundlePackageType</key> + <string>FMWK</string> + <key>CFBundleShortVersionString</key> + <string>1.0</string> + <key>CFBundleSignature</key> + <string>SPDT</string> + <key>CFBundleVersion</key> + <string>1</string> + <key>DTCompiler</key> + <string>com.apple.compilers.llvm.clang.1_0</string> + <key>DTPlatformBuild</key> + <string>10M2518</string> + <key>DTPlatformVersion</key> + <string>PG</string> + <key>DTSDKBuild</key> + <string>9L31a</string> + <key>DTSDKName</key> + <string>macosx10.5</string> + <key>DTXcode</key> + <string>0400</string> + <key>DTXcodeBuild</key> + <string>10M2518</string> +</dict> +</plist> diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL Binary files differnew file mode 100755 index 00000000..d5483d58 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL diff --git a/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current new file mode 120000 index 00000000..8c7e5a66 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current @@ -0,0 +1 @@ +A
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList new file mode 100644 index 00000000..0fdb1c0e --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList @@ -0,0 +1,16 @@ +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap Binary files differnew file mode 100644 index 00000000..f028255b --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap Binary files differnew file mode 100644 index 00000000..dd8b535d --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap Binary files differnew file mode 100644 index 00000000..25d939d3 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap Binary files differnew file mode 100644 index 00000000..0a13ebeb --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework.dep new file mode 100644 index 00000000..a6f3b885 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework.dep @@ -0,0 +1,142 @@ +bfccb90c7f200b83b17548b171dbd469 933ae9c74099be8debbfc5d567fbd48a ffffffffffffffffffffffffffffffff 34248 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +bfccb90c7f244c43b17548b171dbee31 e5ccc2835d553ee38ceb427543e98bb6 ffffffffffffffffffffffffffffffff 34140 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +bfccb90c7f29e0d5b17548b171dbd9ed fb0bb8203d87fa2b2131aa6bc0c28905 ffffffffffffffffffffffffffffffff 24624 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +bfccb90c7f243963b17548b171dbd283 9f8998a1e16460e4deec20c7b93c356e ffffffffffffffffffffffffffffffff 30768 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +bfccb90c7f2fe4bdb17548b171dbc5e5 8010ec6966c027952c3ed2c59e2c96d0 ffffffffffffffffffffffffffffffff 6036 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +bfccb90c7f2fe528b17548b171db86d5 d09b32df5e7edc58c2f512812b6965e8 ffffffffffffffffffffffffffffffff 59112 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +bfccb90c389b2d11b17548b171dbc719 77eaf425d3bafda93536c3e4b81e4479 ffffffffffffffffffffffffffffffff 42980 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +bfccb90c7f209939b17548b171dba71b 53dad33ac0c2ca1b7840b841601f530a ffffffffffffffffffffffffffffffff 63796 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +bfccb90c7f2148cab17548b171dbe725 08cd3ef9f3b090cfc6a6cd070eb19e49 ffffffffffffffffffffffffffffffff 49520 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +bfccb90c7f2dc9ddb17548b171dbc6f9 6ce6921f244c4cc07f000826eaf2dbf1 ffffffffffffffffffffffffffffffff 20816 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +bfccb90c7f5c3b2bb17548b171db8cd7 3984d7d28d2435aecafa55b67ef7cb27 ffffffffffffffffffffffffffffffff 64388 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +bfccb90c7f2fe526b17548b171dbcf53 69345072b559af1f459c83b2779a1449 ffffffffffffffffffffffffffffffff 22568 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +bfccb90c7f25fa58b17548b171dbdc0b 002192fc0ad1c3b1db6abfd2d0e2d6fc ffffffffffffffffffffffffffffffff 28960 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +bfccb90c7f28e52ab17548b171dbf53e e0e9bc5c2012a1f028185b0d1e5b179b ffffffffffffffffffffffffffffffff 44580 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +bfccb90c77d5f1bdb17548b171dbef3c 918a21e657ce491693d00e813222d89d ffffffffffffffffffffffffffffffff 29492 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +bfccb90c778813d3b17548b171dbbfbf ddb4f8d583f0f73cccd92a8c04c17049 ffffffffffffffffffffffffffffffff 108200 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +eaf153e6229fc2378cc6a8badfc8050e a2fd1bbaf2ef08936f05aa12656c6a9a ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +fea22eb9f115a2cda18f651a259bd66d 6eb3521f53ab5d671d39a6a72dffd716 ffffffffffffffffffffffffffffffff 1249328 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +000000004837395c000000000000f9fd bfccb90c3718dc7db17548b171db31f5 ffffffffffffffffffffffffffffffff 9980224 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1942 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1698 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 4407 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 2218 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 4500 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 5346 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +97ed352a49a6a94d07af5db2313dde0a 904c42cca8bbacd460ce61ab74e6a316 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +97ed352a49a6a94d07af5db2313dde0a bbc74268ff442548d89937c723411285 ffffffffffffffffffffffffffffffff 33864 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +97ed352a49a2ee8d07af5db2313de452 426e5970643b97eed9fbfa5874723d2d ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +97ed352a49a2ee8d07af5db2313de452 323d82a4a44e2a050f225a99e8ea0865 ffffffffffffffffffffffffffffffff 33788 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +97ed352a49af421b07af5db2313dd38e 9dfae2aa0f34c82bac2ce2b15be1713f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +97ed352a49af421b07af5db2313dd38e 06591bc0e6e2ce39cf7fe200094b6d40 ffffffffffffffffffffffffffffffff 24288 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +97ed352a49a29bad07af5db2313dd8e0 acbe091e17ac14c880f32cebc3c99c56 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +97ed352a49a29bad07af5db2313dd8e0 23a5e8c8ccd6987bb670c9dd93dadb63 ffffffffffffffffffffffffffffffff 30400 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +97ed352a49a9467307af5db2313dcf86 f47214968fe74fa8c4fc1b3936880f54 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +97ed352a49a9467307af5db2313dcf86 e93102bb17c12255f9bb731b021d3093 ffffffffffffffffffffffffffffffff 5924 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +97ed352a49a947e607af5db2313d8cb6 dd21d8cfe0c7619ec81a7b95328ddbfa ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +97ed352a49a947e607af5db2313d8cb6 d27000fc8ea7e6d7a0a247e2f3f567a0 ffffffffffffffffffffffffffffffff 58808 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +97ed352a0e1d8fdf07af5db2313dcd7a 0e7f0eef19493081ac093465e6b4eb61 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist +97ed352a0e1d8fdf07af5db2313dcd7a a3d9c51ac90ed92f195e55c260805b36 ffffffffffffffffffffffffffffffff 42516 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +97ed352a49a63bf707af5db2313dad78 cce22274caac57d80e09869951843fea ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +97ed352a49a63bf707af5db2313dad78 e91187e4bb4a0638a717eb77174b427d ffffffffffffffffffffffffffffffff 63652 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +97ed352a49a7ea0407af5db2313ded46 e59155e9589dad20b83a7d8e0c6a617f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +97ed352a49a7ea0407af5db2313ded46 e400afe900818bd5024e2910d446e062 ffffffffffffffffffffffffffffffff 49184 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +97ed352a49ab6b1307af5db2313dcc9a 9febb4e9bab24322a7ced49c03f6cfe8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +97ed352a49ab6b1307af5db2313dcc9a 91b911f6ae16d5996d2d3ca2160500cd ffffffffffffffffffffffffffffffff 20496 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +97ed352a49da99e507af5db2313d86b4 afb097bb7357a117f28aeb84b48cd60d ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +97ed352a49da99e507af5db2313d86b4 6f5109f42865bf639aca44a6d762fbb9 ffffffffffffffffffffffffffffffff 63876 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +97ed352a49a947e807af5db2313dc530 5f2085563a2275e2ea698128df9a10c5 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +97ed352a49a947e807af5db2313dc530 48cba2565dae3faf3d36ad3bd4948a1f ffffffffffffffffffffffffffffffff 22200 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +97ed352a49a3589607af5db2313dd668 25f24cbb6a9974f0427d9e417f7d17e8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +97ed352a49a3589607af5db2313dd668 d9b9ecf071d61915ab2de6f3dbbf046b ffffffffffffffffffffffffffffffff 28608 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +97ed352a49ae47e407af5db2313dff5d 912c373dc4f733d10a4f86ad39db0bfa ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +97ed352a49ae47e407af5db2313dff5d e522823ea2fc90a03f942a8b80a32b35 ffffffffffffffffffffffffffffffff 44260 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +97ed352a4153537307af5db2313de55f 733fcef9f29480f98e08536a9f396cb8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +97ed352a4153537307af5db2313de55f 23c1edaccf2208ed07e8b73f3afac370 ffffffffffffffffffffffffffffffff 29108 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +97ed352a410eb11d07af5db2313db5dc 9c9b56d66d88e294fb3ae0556f7bb07c ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +97ed352a410eb11d07af5db2313db5dc d17dd1432f412a64842773bbeb22123d ffffffffffffffffffffffffffffffff 107800 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +a8fcbae79f9cb191a6ec59a1c5ef9957 e5181f3ad952ff2a59a8fb57a1efef37 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +00000000000000000000000000000000 0ed285a755a38324fb8da2170ca27636 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +8fbe42787cc9a9cb07e75306104bdb3f c91124ca1ac6dcd80255573bd082f744 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +00000000000000000000000000000000 371146bb0cb218909ab14c322830ed8c ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +00000000000000000000000000000000 8fbe42787cc9a9cb07e75306104bdb3f ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +418b34e17889d9e0960d381c9c2fafb5 e778a712dd264702d943b93c00dfa766 ffffffffffffffffffffffffffffffff 1248152 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +000000004837395c000000000000f9fd 97ed352a019e7eb307af5db2313d3b96 ffffffffffffffffffffffffffffffff 9978580 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth +000000004f0a19cd0000000000000030 648a2e7e4c968528920e64f89b4fc1ca ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 5fc3356be24eacde1cfecb3f9f4e5381 ffffffffffffffffffffffffffffffff 1942 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +00000000000000000000000000000000 29bfc1397c9d02b8f4513573ebea3c53 ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +00000000000000000000000000000000 d0acad63de3ba60bb27c3ccf14037ca2 ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +00000000000000000000000000000000 4361824f80357621224c79328668d12e ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +00000000000000000000000000000000 3f0fbeb73572afdfb3e9305f28931754 ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +00000000000000000000000000000000 b57b0b56642577a573ee0ebc4d18264e ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +00000000000000000000000000000000 1abb5348761b437e2de51f911679dc5b ffffffffffffffffffffffffffffffff 1698 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +00000000000000000000000000000000 d72089d808bc6c33554f33e5ea0c4091 ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +00000000000000000000000000000000 5792d681d8f8b1edb09032465940c0f9 ffffffffffffffffffffffffffffffff 4407 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +00000000000000000000000000000000 d4181024d7e9b57cc86dc952286aaad2 ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +ffffffffffffffffffffffffffffffff d82a742f74a969d3c56e2c49abb32e43 ffffffffffffffffffffffffffffffff 2218 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +00000000000000000000000000000000 a30231cac98bc135e8ad5fe94127616a ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +00000000000000000000000000000000 59598d4d8a1d420b986426bbbb16495b ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +00000000000000000000000000000000 57f8ebde6e755030c0d927db45f2b960 ffffffffffffffffffffffffffffffff 4500 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +00000000000000000000000000000000 2aa50f4b6a585d513b8a794bb3a35c64 ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 fb76ffe06859757724e0042f205adb09 ffffffffffffffffffffffffffffffff 5346 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 9a57e0bc7a78f4fa18c5056736403c80 ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +ffffffffffffffffffffffffffffffff 0a0da9e8e9d2908364525668b9b54368 ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFullStreamingResult.plist +ffffffffffffffffffffffffffffffff 0f59b1e9cef55fc4b9b09a9e54b9f9cb ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h +000000000776121c000000000000e579 7b09425fbd720e3866d21e7f5753029a ffffffffffffffffffffffffffffffff 9973036 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth +3d58d07c2b841e7f2475a51c25b54e53 6f16defa9a93fab74a3078f76842c846 ffffffffffffffffffffffffffffffff 27352 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +3d58d07c2b89b2e92475a51c25b5798f c789376a33d74b31c109f358f081f00c ffffffffffffffffffffffffffffffff 20220 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +3d58d07c2b846b5f2475a51c25b572e1 37eb025f97b792b3c5fd42a6976f2464 ffffffffffffffffffffffffffffffff 24800 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +3d58d07c2b8c93482475a51c25b56029 5cbbb9afc5933df8e3fe00cfae957b6f ffffffffffffffffffffffffffffffff 4644 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +3d58d07c2b8c92dd2475a51c25b52319 a07add3b5ca8fddf7f01eb12ef115c34 ffffffffffffffffffffffffffffffff 42740 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +3d58d07c2b8da2fe2475a51c25b5637a 6d7a10b1a20f8e8ada105e98a0a53008 ffffffffffffffffffffffffffffffff 18328 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +3d58d07c2b83eecc2475a51c25b502d7 5524997a54b87b7e8e2ec41d34426544 ffffffffffffffffffffffffffffffff 52104 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +3d58d07c2b80ec6a2475a51c25b54fbf 218ac08579f773fbf66f7c0fb941360a ffffffffffffffffffffffffffffffff 34100 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +3d58d07c2b8d9be12475a51c25b5669b b00f96b3d1e57c2edb95f8897fdd7259 ffffffffffffffffffffffffffffffff 18212 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o +3d58d07c2b80eb8d2475a51c25b53837 ca60464e1b52fe332b9bc192bb853e1f ffffffffffffffffffffffffffffffff 40348 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +3d58d07c2b8c92d32475a51c25b56a9f bbd03ad5d90f4886fa08af3be283eaf3 ffffffffffffffffffffffffffffffff 19884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +3d58d07c2b85a8642475a51c25b57c69 5361bb5fcc169776180c35b38c4a8c0a ffffffffffffffffffffffffffffffff 24188 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +3d58d07c2b8b92df2475a51c25b550f2 048c46a1a00d4ad9ad0cc9eeb5b594dc ffffffffffffffffffffffffffffffff 37304 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +3d58d07c2305914e2475a51c25b54b12 aca21aef843ade78b6801add87935c4f ffffffffffffffffffffffffffffffff 24544 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +3d58d07c23553f9a2475a51c25b51cdd cc41a4d5d09ffbffc891383428fb8791 ffffffffffffffffffffffffffffffff 73428 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +b188bf85654b2071950829d6f6307108 717c3aa2094983d7f791e200510d5898 ffffffffffffffffffffffffffffffff 1044140 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +000000000776121c000000000000e579 3d58d07c2cfa80c82475a51c25b588bd ffffffffffffffffffffffffffffffff 10910168 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth +75bfc4d1f0a667ad88fc306ccd92293a aeebb105ec26b3a5eb6ed16c4999bf15 ffffffffffffffffffffffffffffffff 1221296 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +ffffffffffffffffffffffffffffffff 3e7f48f4ccc823a7a6c1c4ed8056f183 ffffffffffffffffffffffffffffffff 9956412 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +3e7f48f4c43be2dda6c1c4ed80561a74 d561662265f8e28104035a5302a00117 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o +00000000000000000000000000000000 80b779573f1ad09d55281bbb3fc0b042 ffffffffffffffffffffffffffffffff 1013 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth +0000000040a8b43d000000000000fba5 0423a29a9f16bcd8725e9213ccf357aa ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth +3e7f48f4c37c2a75a6c1c4ed805606af 1efba746a07fefd105886c67477cc9b3 ffffffffffffffffffffffffffffffff 18412 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o +00000000000000000000000000000000 7e7978f51d62be2f302ef1bcb951d430 ffffffffffffffffffffffffffffffff 9938712 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff 09eed1489fdfceb6465e9187c6b401e6 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o +00000000000000000000000000000000 dea5feeb14c8a5d3c0e5be8bcc322f9e ffffffffffffffffffffffffffffffff 1041 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h +ffffffffffffffffffffffffffffffff 7d0bbb769ec08769af74fee98fc0e2b6 ffffffffffffffffffffffffffffffff 9934372 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking +000000000f84a230000000000000f598 344e22b0555e09e65eaa7db7e7413ec2 ffffffffffffffffffffffffffffffff 9932416 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +3b7002f7ae1d5db27080ce68df8a93ff 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +b502fadbe8071bec9867a7fabad552ac f49b78ae92e67fcc62b1e2cee6ba8197 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework~.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework~.dep new file mode 100644 index 00000000..b1de04a1 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.framework~.dep @@ -0,0 +1,101 @@ +a8fcbae79fe2b607a6ec59a1c5ef9972 e5181f3ad952ff2a59a8fb57a1efef37 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +00000000000000000000000000000000 0ed285a755a38324fb8da2170ca27636 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +8fbe42787cc9a9cb07e75306104bdb3f c91124ca1ac6dcd80255573bd082f744 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +00000000000000000000000000000000 371146bb0cb218909ab14c322830ed8c ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +418b34e178f7de76960d381c9c2faf90 e778a712dd264702d943b93c00dfa766 ffffffffffffffffffffffffffffffff 1248184 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +000000004f0a19cd0000000000000030 648a2e7e4c968528920e64f89b4fc1ca ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 5fc3356be24eacde1cfecb3f9f4e5381 ffffffffffffffffffffffffffffffff 1942 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +00000000000000000000000000000000 29bfc1397c9d02b8f4513573ebea3c53 ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +00000000000000000000000000000000 d0acad63de3ba60bb27c3ccf14037ca2 ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +00000000000000000000000000000000 4361824f80357621224c79328668d12e ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +00000000000000000000000000000000 3f0fbeb73572afdfb3e9305f28931754 ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +00000000000000000000000000000000 b57b0b56642577a573ee0ebc4d18264e ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +00000000000000000000000000000000 1abb5348761b437e2de51f911679dc5b ffffffffffffffffffffffffffffffff 1896 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +00000000000000000000000000000000 d72089d808bc6c33554f33e5ea0c4091 ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +00000000000000000000000000000000 5792d681d8f8b1edb09032465940c0f9 ffffffffffffffffffffffffffffffff 4407 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +00000000000000000000000000000000 d4181024d7e9b57cc86dc952286aaad2 ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +00000000000000000000000000000000 d82a742f74a969d3c56e2c49abb32e43 ffffffffffffffffffffffffffffffff 2190 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +00000000000000000000000000000000 a30231cac98bc135e8ad5fe94127616a ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +00000000000000000000000000000000 59598d4d8a1d420b986426bbbb16495b ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +00000000000000000000000000000000 57f8ebde6e755030c0d927db45f2b960 ffffffffffffffffffffffffffffffff 4518 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +00000000000000000000000000000000 2aa50f4b6a585d513b8a794bb3a35c64 ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 fb76ffe06859757724e0042f205adb09 ffffffffffffffffffffffffffffffff 5346 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 9a57e0bc7a78f4fa18c5056736403c80 ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +97ed352a49a58eb407af5db2313dddaa bbc74268ff442548d89937c723411285 ffffffffffffffffffffffffffffffff 31548 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +97ed352a49a0dcfc07af5db2313de58e 323d82a4a44e2a050f225a99e8ea0865 ffffffffffffffffffffffffffffffff 33788 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +97ed352a49ad706a07af5db2313dd252 06591bc0e6e2ce39cf7fe200094b6d40 ffffffffffffffffffffffffffffffff 24288 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +97ed352a49a0a9dc07af5db2313dd93c 23a5e8c8ccd6987bb670c9dd93dadb63 ffffffffffffffffffffffffffffffff 30400 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +97ed352a49ab740207af5db2313dce5a e93102bb17c12255f9bb731b021d3093 ffffffffffffffffffffffffffffffff 5924 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +97ed352a49ab759707af5db2313d8d6a d27000fc8ea7e6d7a0a247e2f3f567a0 ffffffffffffffffffffffffffffffff 58808 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +97ed352a0e1f17fb07af5db2313dcfeb a3d9c51ac90ed92f195e55c260805b36 ffffffffffffffffffffffffffffffff 42908 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +97ed352a49a4098607af5db2313daca4 e91187e4bb4a0638a717eb77174b427d ffffffffffffffffffffffffffffffff 63652 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +97ed352a49da718e07af5db2313dec62 e400afe900818bd5024e2910d446e062 ffffffffffffffffffffffffffffffff 49344 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +97ed352a49a9596207af5db2313dcd46 91b911f6ae16d5996d2d3ca2160500cd ffffffffffffffffffffffffffffffff 20496 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +97ed352a49d8b75907af5db2313d8724 6f5109f42865bf639aca44a6d762fbb9 ffffffffffffffffffffffffffffffff 63460 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +97ed352a49ab759907af5db2313dc4ec 48cba2565dae3faf3d36ad3bd4948a1f ffffffffffffffffffffffffffffffff 22200 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +97ed352a49a16ae707af5db2313dd7b4 d9b9ecf071d61915ab2de6f3dbbf046b ffffffffffffffffffffffffffffffff 28608 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +97ed352a49ac759507af5db2313dfe81 e522823ea2fc90a03f942a8b80a32b35 ffffffffffffffffffffffffffffffff 44260 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +97ed352a412dc20407af5db2313de426 23c1edaccf2208ed07e8b73f3afac370 ffffffffffffffffffffffffffffffff 29792 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +97ed352a41702d1707af5db2313db505 d17dd1432f412a64842773bbeb22123d ffffffffffffffffffffffffffffffff 108652 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +0000000048350b2d000000000000f821 97ed352a019e7eb307af5db2313d3b96 ffffffffffffffffffffffffffffffff 9978988 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth +00000000000000000000000000000000 8fbe42787cc9a9cb07e75306104bdb3f ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +ffffffffffffffffffffffffffffffff afb097bb7357a117f28aeb84b48cd60d ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +97ed352a0698dff307af5db2313dda29 904c42cca8bbacd460ce61ab74e6a316 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +97ed352a069d8dbb07af5db2313de20d 426e5970643b97eed9fbfa5874723d2d ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +97ed352a0690212d07af5db2313dd5d1 9dfae2aa0f34c82bac2ce2b15be1713f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +97ed352a069df89b07af5db2313ddebf acbe091e17ac14c880f32cebc3c99c56 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +97ed352a0696254507af5db2313dc9d9 f47214968fe74fa8c4fc1b3936880f54 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +97ed352a069624d007af5db2313d8ae9 dd21d8cfe0c7619ec81a7b95328ddbfa ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +97ed352a412246bc07af5db2313dc868 0e7f0eef19493081ac093465e6b4eb61 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist +97ed352a069958c107af5db2313dab27 cce22274caac57d80e09869951843fea ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +97ed352a06e720c907af5db2313debe1 e59155e9589dad20b83a7d8e0c6a617f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +97ed352a0694082507af5db2313dcac5 9febb4e9bab24322a7ced49c03f6cfe8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +97ed352a069624de07af5db2313dc36f 5f2085563a2275e2ea698128df9a10c5 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +97ed352a069c3ba007af5db2313dd037 25f24cbb6a9974f0427d9e417f7d17e8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +97ed352a069124d207af5db2313df902 912c373dc4f733d10a4f86ad39db0bfa ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +97ed352a0e10934307af5db2313de3a5 733fcef9f29480f98e08536a9f396cb8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +97ed352a0e4d7c5007af5db2313db286 9c9b56d66d88e294fb3ae0556f7bb07c ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +ffffffffffffffffffffffffffffffff 0a0da9e8e9d2908364525668b9b54368 ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFullStreamingResult.plist +ffffffffffffffffffffffffffffffff 0f59b1e9cef55fc4b9b09a9e54b9f9cb ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h +000000000776121c000000000000e579 7b09425fbd720e3866d21e7f5753029a ffffffffffffffffffffffffffffffff 9973036 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth +3d58d07c2b841e7f2475a51c25b54e53 6f16defa9a93fab74a3078f76842c846 ffffffffffffffffffffffffffffffff 27352 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +3d58d07c2b89b2e92475a51c25b5798f c789376a33d74b31c109f358f081f00c ffffffffffffffffffffffffffffffff 20220 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +3d58d07c2b846b5f2475a51c25b572e1 37eb025f97b792b3c5fd42a6976f2464 ffffffffffffffffffffffffffffffff 24800 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +3d58d07c2b8c93482475a51c25b56029 5cbbb9afc5933df8e3fe00cfae957b6f ffffffffffffffffffffffffffffffff 4644 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +3d58d07c2b8c92dd2475a51c25b52319 a07add3b5ca8fddf7f01eb12ef115c34 ffffffffffffffffffffffffffffffff 42740 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +3d58d07c2b8da2fe2475a51c25b5637a 6d7a10b1a20f8e8ada105e98a0a53008 ffffffffffffffffffffffffffffffff 18328 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +3d58d07c2b83eecc2475a51c25b502d7 5524997a54b87b7e8e2ec41d34426544 ffffffffffffffffffffffffffffffff 52104 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +3d58d07c2b80ec6a2475a51c25b54fbf 218ac08579f773fbf66f7c0fb941360a ffffffffffffffffffffffffffffffff 34100 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +3d58d07c2b8d9be12475a51c25b5669b b00f96b3d1e57c2edb95f8897fdd7259 ffffffffffffffffffffffffffffffff 18212 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o +3d58d07c2b80eb8d2475a51c25b53837 ca60464e1b52fe332b9bc192bb853e1f ffffffffffffffffffffffffffffffff 40348 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +3d58d07c2b8c92d32475a51c25b56a9f bbd03ad5d90f4886fa08af3be283eaf3 ffffffffffffffffffffffffffffffff 19884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +3d58d07c2b85a8642475a51c25b57c69 5361bb5fcc169776180c35b38c4a8c0a ffffffffffffffffffffffffffffffff 24188 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +3d58d07c2b8b92df2475a51c25b550f2 048c46a1a00d4ad9ad0cc9eeb5b594dc ffffffffffffffffffffffffffffffff 37304 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +3d58d07c2305914e2475a51c25b54b12 aca21aef843ade78b6801add87935c4f ffffffffffffffffffffffffffffffff 24544 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +3d58d07c23553f9a2475a51c25b51cdd cc41a4d5d09ffbffc891383428fb8791 ffffffffffffffffffffffffffffffff 73428 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +b188bf85654b2071950829d6f6307108 717c3aa2094983d7f791e200510d5898 ffffffffffffffffffffffffffffffff 1044140 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +000000000776121c000000000000e579 3d58d07c2cfa80c82475a51c25b588bd ffffffffffffffffffffffffffffffff 10910168 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth +75bfc4d1f0a667ad88fc306ccd92293a aeebb105ec26b3a5eb6ed16c4999bf15 ffffffffffffffffffffffffffffffff 1221296 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +ffffffffffffffffffffffffffffffff 3e7f48f4ccc823a7a6c1c4ed8056f183 ffffffffffffffffffffffffffffffff 9956412 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +3e7f48f4c43be2dda6c1c4ed80561a74 d561662265f8e28104035a5302a00117 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o +00000000000000000000000000000000 80b779573f1ad09d55281bbb3fc0b042 ffffffffffffffffffffffffffffffff 1013 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth +0000000040a8b43d000000000000fba5 0423a29a9f16bcd8725e9213ccf357aa ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth +3e7f48f4c37c2a75a6c1c4ed805606af 1efba746a07fefd105886c67477cc9b3 ffffffffffffffffffffffffffffffff 18412 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o +00000000000000000000000000000000 7e7978f51d62be2f302ef1bcb951d430 ffffffffffffffffffffffffffffffff 9938712 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff 09eed1489fdfceb6465e9187c6b401e6 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o +00000000000000000000000000000000 dea5feeb14c8a5d3c0e5be8bcc322f9e ffffffffffffffffffffffffffffffff 1041 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h +ffffffffffffffffffffffffffffffff 7d0bbb769ec08769af74fee98fc0e2b6 ffffffffffffffffffffffffffffffff 9934372 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking +000000000f84a230000000000000f598 344e22b0555e09e65eaa7db7e7413ec2 ffffffffffffffffffffffffffffffff 9932416 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +3b7002f7ae1d5db27080ce68df8a93ff 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +b502fadbe8071bec9867a7fabad552ac f49b78ae92e67fcc62b1e2cee6ba8197 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.hmap Binary files differnew file mode 100644 index 00000000..607303b4 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state.dat new file mode 100644 index 00000000..4bf22b08 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state.dat @@ -0,0 +1,2676 @@ +TSPMySQL.framework +v7 +r0 +t351391670.553327 +cCheck dependencies +cSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A +cSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources +cSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers +cSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +cProcessInfoPlistFile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h Source/SPMySQL.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +cCopyStringsFile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 +cTouch /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework + +N/Developer/SDKs/MacOSX10.5.sdk +c000000004C238B9B00000000000000EE +t1277397915 +s238 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h +c0000000040C4AA6800000000000001E5 +t1086630504 +s485 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h +c000000004864A1C900000000000012EE +t1214554569 +s4846 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/Headers/SCNetworkReachability.h +c0000000047BAC506000000000000235B +t1203422470 +s9051 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration +c000000004B760CDC00000000000371FC +t1266027740 +s225788 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h +c0000000047E8839E0000000000000746 +t1206420382 +s1862 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h +c0000000047BA9932000000000000380F +t1203411250 +s14351 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h +c0000000047BA9930000000000000055B +t1203411248 +s1371 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h +c0000000047E883D2000000000000290F +t1206420434 +s10511 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/libz.dylib +c000000004B760D050000000000006EE8 +t1266027781 +s28392 + +N/System/Library/Frameworks/Cocoa.framework/Cocoa +c000000004E2DE5120000000000006560 +t1311630610 +s25952 + +N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings +c000000004F0A19CD0000000000000030 +t1326062029 +s48 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h +c000000004F130858000000000000070C +t1326647384 +s1804 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h +c000000004F13085800000000000005D0 +t1326647384 +s1488 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h +c000000004F13085800000000000083EB +t1326647384 +s33771 +i<standards.h> +i<sys/types.h> +i<winsock2.h> +i"mysql_version.h" +i"mysql_com.h" +i"mysql_time.h" +i"my_list.h" +i"typelib.h" +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h +c000000004F130858000000000000503F +t1326647384 +s20543 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h +c000000004F1308580000000000000831 +t1326647384 +s2097 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h +c000000004F130858000000000000032B +t1326647384 +s811 +i<custom_conf.h> + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h +c000000004F13085800000000000005DD +t1326647384 +s1501 +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a +c000000004F13085B0000000000445164 +t1326647387 +s4477284 + +N/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h +c000000004F3FDF050000000000000EFA +t1329585925 +s3834 +i"Ping & KeepAlive.h" +i"Locking.h" +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/SPMySQL.h +c000000004F40545B00000000000008AA +t1329615963 +s2218 +i"SPMySQLConstants.h" +i"SPMySQLStringAdditions.h" +i"SPMySQLConnectionDelegate.h" +i"SPMySQLConnectionProxy.h" +i"SPMySQLConnection.h" +i"Delegate & Proxy.h" +i"Databases & Tables.h" +i"Max Packet Size.h" +i"Querying & Preparation.h" +i"Encoding.h" +i"Server Info.h" +i"SPMySQLResult.h" +i"SPMySQLStreamingResult.h" +i"SPMySQLFastStreamingResult.h" +i"Field Definitions.h" +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/SPMySQLConnection Private APIs.h +c000000004F3CF8880000000000000A80 +t1329395848 +s2688 +i"Ping & KeepAlive.h" +i"Locking.h" +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h +c000000004F307BEF00000000000009A8 +t1328577519 +s2472 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +c000000004F307BE80000000000000EF3 +t1328577512 +s3827 +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h +c000000004F3800F70000000000000711 +t1329070327 +s1809 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +c000000004F3D0465000000000000245E +t1329398885 +s9310 +i"Databases & Tables.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h +c000000004F3452E5000000000000057E +t1328829157 +s1406 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +c000000004F3CFAE100000000000011ED +t1329396449 +s4589 +i"Delegate & Proxy.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +c000000004F1CBCB7000000000000041D +t1327283383 +s1053 +i"Encoding & Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h +c000000004F340C6A000000000000079C +t1328811114 +s1948 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +c000000004F330C610000000000003AAA +t1328745569 +s15018 +i"Encoding.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking +c000000004F1C42CD00000000000000BD +t1327252173 +s189 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h +c000000004F307BFB00000000000005E6 +t1328577531 +s1510 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +c000000004F3CFAF70000000000000E61 +t1329396471 +s3681 +i"Locking.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h +c000000004F398B4100000000000005F3 +t1329171265 +s1523 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +c000000004F3CFAF30000000000001A0E +t1329396467 +s6670 +i"Max Packet Size.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +c000000004F3172E100000000000007C2 +t1328640737 +s1986 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +c000000004F4184B40000000000001D1F +t1329693876 +s7455 +i"Ping & KeepAlive.h" +i"Locking.h" +i<pthread.h> + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h +c000000004F40542D0000000000001194 +t1329615917 +s4500 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +c000000004F405438000000000000554B +t1329615928 +s21835 +i"SPMySQLConnection.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +c000000004F1C1C690000000000000419 +t1327242345 +s1049 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h +c000000004F3848660000000000000761 +t1329088614 +s1889 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +c000000004F3CFAEF0000000000001614 +t1329396463 +s5652 +i"Server Info.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h +c000000004F3D27C200000000000014E2 +t1329407938 +s5346 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +c000000004F4184A80000000000006ED3 +t1329693864 +s28371 +i"SPMySQL Private APIs.h" +i<mach/mach_time.h> +i<pthread.h> +i<SystemConfiguration/SCNetworkReachability.h> + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h +c000000004F36BCAB0000000000001041 +t1328987307 +s4161 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h +c000000004F327BDC0000000000000884 +t1328708572 +s2180 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h +c000000004F39B228000000000000092D +t1329181224 +s2349 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h +c000000004F417F8900000000000006A2 +t1329692553 +s1698 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +c000000004F41837B00000000000034CA +t1329693563 +s13514 +i"SPMySQLFastStreamingResult.h" +i"SPMySQL Private APIs.h" +i<pthread.h> + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch +c000000004F307C5D00000000000000E7 +t1328577629 +s231 +i<Cocoa/Cocoa.h> +i"mysql.h" +i"SPMySQL.h" +i"SPMySQLUtilities.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m +c000000004F3FFADE0000000000003EB1 +t1329593054 +s16049 +i"SPMySQLStreamingResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullyStreamingResult.h +c000000004F3ED347000000000000099C +t1329517383 +s2460 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h +c000000004F32785D00000000000006DB +t1328707677 +s1755 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +c000000004F3D044500000000000069C8 +t1329398853 +s27080 +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h +c000000004F307BB8000000000000059A +t1328577464 +s1434 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +c000000004F307BB10000000000004B47 +t1328577457 +s19271 +i"Field Definitions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h +c000000004F415CF40000000000001137 +t1329683700 +s4407 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +c000000004F415CEF0000000000003B6C +t1329683695 +s15212 +i"SPMySQLResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h +c000000004F401EC60000000000000796 +t1329602246 +s1942 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +c000000004F415D940000000000001E81 +t1329683860 +s7809 +i"SPMySQLStreamingResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.h +c000000004F32FAD700000000000005CE +t1328741079 +s1486 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +c000000004F32FB4B0000000000000823 +t1328741195 +s2083 +i"SPMySQLStringAdditions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLUtilities.h +c000000004F307D2800000000000006F7 +t1328577832 +s1783 +i<mach/mach_time.h> + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +t1329693883 +s204 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +t1329613170 +s1809 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +t1329613170 +s1406 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h +t1327282092 +s1041 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +t1329613170 +s1948 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +t1329613170 +s1434 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +t1329613170 +s1523 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +t1329615931 +s4500 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h +t1327593846 +s1013 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +t1329615964 +s2218 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +t1329613170 +s5346 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +t1329613170 +s4161 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +t1329613170 +s2180 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +t1329613170 +s2349 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +t1329693475 +s1698 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +t1329613170 +s1755 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +t1329683868 +s4407 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +t1329613170 +s1942 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +t1329613170 +s1889 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1329613170 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +t1329613170 +s1144 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o +t1327590974 +s18412 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +t1327590974 +s9938712 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +t1329693883 +s1248152 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +t1327194721 +s204 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +t3 +s33 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +t1327194721 +s1975 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +t1327194721 +s974 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1327194721 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +t1327194721 +s1170 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +t1327194721 +s19824 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +t1329400733 +s19884 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +t1329400733 +s27352 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +t1329400733 +s20220 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +t1329400733 +s37304 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +t1329400733 +s42740 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o +t1329400733 +s18212 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +t1329400733 +s24800 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +t1329400732 +s24544 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +t1329400733 +s40348 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +t1329400733 +s1044140 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList +c000000004F3D0B9C00000000000007C4 +t1329400732 +s1988 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +t1329400733 +s73428 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +t1329400733 +s52104 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +t1329400733 +s34100 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +t1329400733 +s18328 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +t1329400733 +s4644 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +t1329400733 +s24188 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +t1329693476 +s22200 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +t1329693477 +s33788 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +t1329693477 +s24288 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o +t1327282093 +s884 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +t1329693476 +s44260 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +t1329693476 +s58808 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +t1329693476 +s20496 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +t1329693477 +s30400 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +t1329693883 +s29108 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +t1329693476 +s63876 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o +t1327974108 +s860 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +t1329400733 +s1221296 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList +c000000004F4049720000000000000873 +t1329613170 +s2163 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +t1329693883 +s107800 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +t1329693571 +s42516 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList +c000000004F1B6219000000000000021D +t1327194649 +s541 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +t1329693476 +s63652 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +t1329693476 +s49184 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +t1329693477 +s33864 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +t1329693476 +s5924 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +t1329693476 +s28608 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +t1329693888 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +t1329693890 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +t1329693888 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist +t1329693890 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFullStreamingResult.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +t1329693900 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +t1329693890 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +t1329693889 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +t1329693888 +s276 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/English.lproj/InfoPlist.strings +c000000004F0A19CD0000000000000030 +t1326062029 +s48 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h +c000000004F130858000000000000070C +t1326647384 +s1804 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/my_list.h +c000000004F13085800000000000005D0 +t1326647384 +s1488 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h +c000000004F13085800000000000083EB +t1326647384 +s33771 +i<standards.h> +i<sys/types.h> +i<winsock2.h> +i"mysql_version.h" +i"mysql_com.h" +i"mysql_time.h" +i"my_list.h" +i"typelib.h" +i"my_alloc.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h +c000000004F130858000000000000503F +t1326647384 +s20543 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h +c000000004F1308580000000000000831 +t1326647384 +s2097 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h +c000000004F130858000000000000032B +t1326647384 +s811 +i<custom_conf.h> + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/typelib.h +c000000004F13085800000000000005DD +t1326647384 +s1501 +i"my_alloc.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a +c000000004F13085B0000000000445164 +t1326647387 +s4477284 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQL Private APIs.h +c000000004F3FDF050000000000000EFA +t1329585925 +s3834 +i"Ping & KeepAlive.h" +i"Locking.h" +i"Conversion.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQL.h +c000000004F40545B00000000000008AA +t1329615963 +s2218 +i"SPMySQLConstants.h" +i"SPMySQLStringAdditions.h" +i"SPMySQLConnectionDelegate.h" +i"SPMySQLConnectionProxy.h" +i"SPMySQLConnection.h" +i"Delegate & Proxy.h" +i"Databases & Tables.h" +i"Max Packet Size.h" +i"Querying & Preparation.h" +i"Encoding.h" +i"Server Info.h" +i"SPMySQLResult.h" +i"SPMySQLStreamingResult.h" +i"SPMySQLFastStreamingResult.h" +i"Field Definitions.h" +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h +c000000004F307BEF00000000000009A8 +t1328577519 +s2472 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +c000000004F307BE80000000000000EF3 +t1328577512 +s3827 +i"Conversion.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h +c000000004F3800F70000000000000711 +t1329070327 +s1809 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +c000000004F3D0465000000000000245E +t1329398885 +s9310 +i"Databases & Tables.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h +c000000004F3452E5000000000000057E +t1328829157 +s1406 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +c000000004F3CFAE100000000000011ED +t1329396449 +s4589 +i"Delegate & Proxy.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h +c000000004F340C6A000000000000079C +t1328811114 +s1948 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +c000000004F330C610000000000003AAA +t1328745569 +s15018 +i"Encoding.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h +c000000004F307BFB00000000000005E6 +t1328577531 +s1510 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +c000000004F3CFAF70000000000000E61 +t1329396471 +s3681 +i"Locking.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h +c000000004F398B4100000000000005F3 +t1329171265 +s1523 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +c000000004F3CFAF30000000000001A0E +t1329396467 +s6670 +i"Max Packet Size.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +c000000004F3172E100000000000007C2 +t1328640737 +s1986 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +c000000004F4184B40000000000001D1F +t1329693876 +s7455 +i"Ping & KeepAlive.h" +i"Locking.h" +i<pthread.h> + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h +c000000004F40542D0000000000001194 +t1329615917 +s4500 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +c000000004F405438000000000000554B +t1329615928 +s21835 +i"SPMySQLConnection.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h +c000000004F3848660000000000000761 +t1329088614 +s1889 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +c000000004F3CFAEF0000000000001614 +t1329396463 +s5652 +i"Server Info.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.h +c000000004F3D27C200000000000014E2 +t1329407938 +s5346 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m +c000000004F4184A80000000000006ED3 +t1329693864 +s28371 +i"SPMySQL Private APIs.h" +i<mach/mach_time.h> +i<pthread.h> +i<SystemConfiguration/SCNetworkReachability.h> + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h +c000000004F36BCAB0000000000001041 +t1328987307 +s4161 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnectionProxy.h +c000000004F327BDC0000000000000884 +t1328708572 +s2180 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConstants.h +c000000004F39B228000000000000092D +t1329181224 +s2349 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h +c000000004F417F8900000000000006A2 +t1329692553 +s1698 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +c000000004F41837B00000000000034CA +t1329693563 +s13514 +i"SPMySQLFastStreamingResult.h" +i"SPMySQL Private APIs.h" +i<pthread.h> + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch +c000000004F307C5D00000000000000E7 +t1328577629 +s231 +i<Cocoa/Cocoa.h> +i"mysql.h" +i"SPMySQL.h" +i"SPMySQLUtilities.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.h +c000000004F32785D00000000000006DB +t1328707677 +s1755 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m +c000000004F3D044500000000000069C8 +t1329398853 +s27080 +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h +c000000004F307BB8000000000000059A +t1328577464 +s1434 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +c000000004F307BB10000000000004B47 +t1328577457 +s19271 +i"Field Definitions.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.h +c000000004F415CF40000000000001137 +t1329683700 +s4407 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m +c000000004F415CEF0000000000003B6C +t1329683695 +s15212 +i"SPMySQLResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.h +c000000004F401EC60000000000000796 +t1329602246 +s1942 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m +c000000004F415D940000000000001E81 +t1329683860 +s7809 +i"SPMySQLStreamingResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.h +c000000004F32FAD700000000000005CE +t1328741079 +s1486 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m +c000000004F32FB4B0000000000000823 +t1328741195 +s2083 +i"SPMySQLStringAdditions.h" + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLUtilities.h +c000000004F307D2800000000000006F7 +t1328577832 +s1783 +i<mach/mach_time.h> + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework +t1329696822 +s204 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +t3 +s24 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +t3 +s26 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +t3 +s24 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +t1329613170 +s1809 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +t1329613170 +s1406 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +t1329613170 +s1948 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +t1329613170 +s1434 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +t1329613170 +s1523 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +t1329615931 +s4500 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +t1329615964 +s2218 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +t1329613170 +s5346 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +t1329613170 +s4161 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +t1329613170 +s2180 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +t1329613170 +s2349 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +t1329693475 +s1698 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +t1329613170 +s1755 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +t1329683868 +s4407 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +t1329613170 +s1942 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +t1329613170 +s1889 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1329613170 +s92 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +t1329613170 +s1144 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +t1329696682 +s1249328 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +t1329696492 +s22568 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +t1329696492 +s34140 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +t1329696492 +s24624 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +t1329696492 +s44580 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +t1329696492 +s59112 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +t1329696492 +s20816 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +t1329696492 +s30768 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +t1329696492 +s29492 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +t1329696492 +s64388 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList +c000000004F418EEA0000000000000A53 +t1329696490 +s2643 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +t1329696492 +s108200 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +t1329696492 +s42980 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +t1329696492 +s63796 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +t1329696492 +s49520 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +t1329696492 +s34248 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +t1329696492 +s6036 + +N/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +t1329696492 +s28960 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +t1327271264 +s9934372 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth +t1329696492 +s9980224 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +t1328637468 +s9956412 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +t1327244598 +s9932416 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth +t1329693476 +s9978580 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth +t1329403345 +s9973036 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth +t1329399762 +s10910168 + +NResources/Info.plist +c000000004F0A20EC0000000000000357 +t1326063852 +s855 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" +s351386688.850748 +e351386688.992999 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +lSLF07#2@91"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386688#351386689#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4573408912#1843" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" +s351386689.833013 +e351386690.064014 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +lSLF07#2@99"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386689#351386690#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4573408912#1861" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" +s351386689.796900 +e351386689.974122 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386689#351386690#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4573408912#1857" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" +s351386688.022835 +e351386688.850095 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +lSLF07#2@89"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386688#351386688#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4573408912#1839" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" +s351386688.993093 +e351386689.273128 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +lSLF07#2@88"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386688#351386689#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4573408912#1837" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" +s351386689.647071 +e351386689.832752 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +lSLF07#2@96"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386689#351386689#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4573408912#1855" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" +s351386688.022029 +e351386689.066062 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386688#351386689#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4573408912#1857" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" +s351386688.851955 +e351386689.270522 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +lSLF07#2@103"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386688#351386689#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4573408912#1869" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" +s351386688.023968 +e351386688.850569 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +lSLF07#2@92"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386688#351386688#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4573408912#1847" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" +s351386689.274905 +e351386689.538212 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +lSLF07#2@94"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386689#351386689#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4573408912#1855" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist"
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +s351386688.020690 +e351386689.272487 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +lSLF07#2@69"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386688#351386689#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4573408912#1826" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +s351386689.273497 +e351386690.250458 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +lSLF07#2@78"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386689#351386690#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4573408912#1844" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m +r0 + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +s351386689.270618 +e351386700.298481 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +lSLF07#2@71"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386689#351386700#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4573408912#1830" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +s351386689.066406 +e351386689.642593 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +lSLF07#2@65"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386689#351386689#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4573408912#1818" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +s351386689.975239 +e351386690.215377 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386689#351386690#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4573408912#1836" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +s351386689.567692 +e351386689.796498 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386689#351386689#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4573408912#1836" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist
0# + +CCheck dependencies +r0 +lSLF07#2@18"Check dependencies351391670#351391670#0(0"0(0#1#0"4684336560#0"0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.356219 +e351093533.423922 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351093533#351093533#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4566089360#1837" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.314225 +e351093533.384062 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351093533#351093533#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4566089360#1833" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.241830 +e351093533.356050 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351093533#351093533#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4566089360#1831" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.311400 +e351093533.389820 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351093533#351093533#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4566089360#1831" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093532.909342 +e351093533.002616 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351093532#351093533#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4566089360#1833" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.078124 +e351093533.233582 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351093533#351093533#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4566089360#1845" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.002775 +e351093533.077953 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351093533#351093533#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4566089360#1823" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.984549 +e351386277.234831 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386276#351386277#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4488392336#1843" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.900013 +e351389292.978357 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@129"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351389292#351389292#0(0"0(0#0#121"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4785176208#2173" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.960629 +e351386277.228729 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386276#351386277#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4488392336#1839" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.897886 +e351389292.964686 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@127"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351389292#351389292#0(0"0(0#0#119"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4785176208#2169" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348974893.569529 +e348974893.613561 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@102"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m348974893#348974893#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m4617666192#1860" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.861964 +e351386276.984380 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386276#351386276#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4488392336#1837" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.745259 +e351389292.902578 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@124"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351389292#351389292#0(0"0(0#0#116"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4785176208#2167" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.951298 +e351386277.234409 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386276#351386277#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4488392336#1837" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.809513 +e351389292.899863 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@126"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351389292#351389292#0(0"0(0#0#118"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4785176208#2167" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386682.932966 +e351386683.257244 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386682#351386683#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4544028304#1839" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.274660 +e351389292.466666 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@127"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351389292#351389292#0(0"0(0#0#119"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4785176208#2169" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.684238 +e351386276.833066 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386276#351386276#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4488392336#1851" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.469214 +e351389292.744815 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@133"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351389292#351389292#0(0"0(0#0#125"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4785176208#2181" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.605222 +e351386276.681439 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386276#351386276#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4488392336#1829" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.277673 +e351389292.469081 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@122"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351389292#351389292#0(0"0(0#0#114"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4785176208#2159" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o"
0# + +CCompileC build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s349283773.971303 +e349283774.259882 +r1 +xCompileC +xbuild/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m:88:9:{88:9-88:33}: warning: method '-flushMultiResults' not found (return type defaults to 'id') +o [self flushMultiResults]; +o ^~~~~~~~~~~~~~~~~~~~~~~~ +o1 warning generated. +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m349283773#349283774#0(268"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m:88:9:{88:9-88:33}: warning: method '-flushMultiResults' not found (return type defaults to 'id')
[self flushMultiResults];
^~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
1(22@68"Method '-flushMultiResults' not found (return type defaults to 'id')349283774#0#178#0(6@80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m348976495#88#9#0#0#49"method * not found (return type defaults to 'id')1(6@80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m348976495#88#9#88#33#0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4483198608#1789" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.019170 +e351093533.085021 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351093533#351093533#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4566089360#1819" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093532.910800 +e351093533.019019 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351093532#351093533#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4566089360#1815" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.085189 +e351093533.156564 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351093533#351093533#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4566089360#1813" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093532.907984 +e351093533.112078 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351093532#351093533#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4566089360#1802" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.143594 +e351093533.371441 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351093533#351093533#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4566089360#1806" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.112422 +e351093533.311221 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351093533#351093533#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4566089360#1794" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.156743 +e351093533.254840 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351093533#351093533#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4566089360#1812" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.255195 +e351093533.314064 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351093533#351093533#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4566089360#1812" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.681590 +e351386276.753789 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386276#351386276#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4488392336#1825" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.466977 +e351389292.700592 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@121"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351389292#351389292#0(0"0(0#0#113"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4785176208#2155" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.603960 +e351386276.701161 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386276#351386276#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4488392336#1821" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.275944 +e351389292.477431 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@119"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351389292#351389292#0(0"0(0#0#111"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4785176208#2151" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.701316 +e351386276.770892 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386276#351386276#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4488392336#1819" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.479437 +e351389292.698748 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@118"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351389292#351389292#0(0"0(0#0#110"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4785176208#2149" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s349666908.814076 +e349666908.859934 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m349666908#349666908#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m4570701456#1821" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386682.931736 +e351386683.317129 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386682#351386683#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4544028304#1808" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.273096 +e351389292.525055 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m351389292#351389292#0(0"0(0#0#91"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m4785176208#2138" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386371.600764 +e351386371.686534 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@78"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386371#351386371#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4488392336#1826" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.700729 +e351389292.809100 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@108"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351389292#351389292#0(0"0(0#0#100"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4785176208#2156" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.771053 +e351386276.996988 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386276#351386276#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4488392336#1812" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.699063 +e351389292.913023 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@101"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m351389292#351389292#0(0"0(0#0#93"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m4785176208#2142" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.753947 +e351386276.918993 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386276#351386276#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4488392336#1800" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.525186 +e351389292.782467 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@95"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m351389292#351389292#0(0"0(0#0#87"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m4785176208#2130" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.997144 +e351386277.272419 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386276#351386277#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4488392336#1818" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.902706 +e351389292.982185 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@104"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m351389292#351389292#0(0"0(0#0#96"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m4785176208#2148" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386276.919191 +e351386276.960456 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386276#351386276#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4488392336#1818" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389292.782623 +e351389292.835629 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@104"Compile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m351389292#351389292#0(0"0(0#0#96"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m4785176208#2148" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o
0# + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s351305970.749404 +e351305970.858355 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4575997584#365" cd /Users/rowan/code/SPMySQLFramework
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj
0# + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s348887521.562165 +e348887521.625799 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings348887521#348887521#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4623519376#374" cd /Users/rowan/code/SPMySQLFramework
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj
0# + +CCopyStringsFile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +r0 + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +s351305970.712961 +e351305970.732881 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +xSource/SPMySQLConnection Categories/Databases & Tables.h +lSLF07#2@61"Copy Source/SPMySQLConnection Categories/Databases & Tables.h351305970#351305970#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h4575997584#403" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +s351305970.712209 +e351305970.740798 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +xSource/SPMySQLConnection Categories/Delegate & Proxy.h +lSLF07#2@59"Copy Source/SPMySQLConnection Categories/Delegate & Proxy.h351305970#351305970#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h4575997584#401" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h" "Source/SPMySQLConnection Categories/Encoding & Conversion.h" +s348974892.484151 +e348974892.511762 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h +xSource/SPMySQLConnection Categories/Encoding & Conversion.h +lSLF07#2@64"Copy Source/SPMySQLConnection Categories/Encoding & Conversion.h348974892#348974892#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h4617666192#385" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +s351305970.709841 +e351305970.724154 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +xSource/SPMySQLResult Categories/Field Definitions.h +lSLF07#2@56"Copy Source/SPMySQLResult Categories/Field Definitions.h351305970#351305970#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h4575997584#398" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +s351305970.711449 +e351305970.733648 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +xSource/SPMySQLConnection Categories/Max Packet Size.h +lSLF07#2@58"Copy Source/SPMySQLConnection Categories/Max Packet Size.h351305970#351305970#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h4575997584#400" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +s351308731.413332 +e351308731.426021 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +xSource/SPMySQLConnection Categories/Querying & Preparation.h +lSLF07#2@65"Copy Source/SPMySQLConnection Categories/Querying & Preparation.h351308731#351308731#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h4542955152#407" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +s351305970.686630 +e351305970.709716 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +xSource/SPMySQLConnection Categories/Server Info.h +lSLF07#2@54"Copy Source/SPMySQLConnection Categories/Server Info.h351305970#351305970#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h4575997584#396" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +s351305970.685850 +e351305970.709531 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +xSource/SPMySQLConnection Categories/Encoding.h +lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Encoding.h351305970#351305970#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h4575997584#393" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h "Source/SPMySQLConnection Categories/Querying.h" +s349286646.091209 +e349286646.124156 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h +xSource/SPMySQLConnection Categories/Querying.h +lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Querying.h349286646#349286646#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h4481736336#393" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h +s351308764.599575 +e351308764.610216 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +xSPMySQL.h +lSLF07#2@14"Copy SPMySQL.h351308764#351308764#0(0"0(0#0#44"/Users/rowan/code/SPMySQLFramework/SPMySQL.h4545101456#354" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/SPMySQL.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h Source/SPMySQL.h +r0 + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s351305970.683793 +e351305970.708220 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h351305970#351305970#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4575997584#371" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +s351305970.688275 +e351305970.723280 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +xSource/SPMySQLConnectionDelegate.h +lSLF07#2@39"Copy Source/SPMySQLConnectionDelegate.h351305970#351305970#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h4575997584#379" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +s351305970.710781 +e351305970.732411 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +xSource/SPMySQLConnectionProxy.h +lSLF07#2@36"Copy Source/SPMySQLConnectionProxy.h351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h4575997584#376" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s351305970.684483 +e351305970.708660 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h351305970#351305970#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4575997584#370" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h +s351386275.402592 +e351386275.414457 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +xSource/SPMySQLFastStreamingResult.h +lSLF07#2@40"Copy Source/SPMySQLFastStreamingResult.h351386275#351386275#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h4488392336#380" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h Source/SPMySQLFullyStreamingResult.h +r0 + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +s351305970.689810 +e351305970.732608 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +xSource/SPMySQLGeometryData.h +lSLF07#2@33"Copy Source/SPMySQLGeometryData.h351305970#351305970#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h4575997584#373" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +s351376668.973039 +e351376668.984128 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +xSource/SPMySQLResult.h +lSLF07#2@27"Copy Source/SPMySQLResult.h351376668#351376669#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h4544564880#367" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +s351305970.714493 +e351305970.740982 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +xSource/SPMySQLStreamingResult.h +lSLF07#2@36"Copy Source/SPMySQLStreamingResult.h351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h4575997584#376" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s348887521.548409 +e348887521.561731 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h348887521#348887521#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4623519376#359" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s348887521.549428 +e348887521.562097 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h348887521#348887521#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4623519376#358" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers
0# + +CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/Locking "Source/SPMySQLConnection Categories/Locking" +r0 + +CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +s348964064.046418 +e348964064.130069 +r1 +xCpResource +xbuild/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth348964064#348964064#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth4481736336#469" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources
0# + +CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +s349283773.968481 +e349283774.098447 +r1 +xCpResource +xbuild/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth349283773#349283774#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth4483198608#469" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources
0# + +CCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" +s351093598.347160 +e351093598.359672 +r1 +xCreateUniversalBinary +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +xnormal +xx86_64 i386 +lSLF07#2@91"CreateUniversalBinary build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386"351093598#351093598#0(0"0(0#0#46"/Users/rowan/code/SPMySQLFramework/x86_64 i3864563705488#406" cd /Users/rowan/code/SPMySQLFramework
/usr/bin/lipo -create /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -output /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL
0# + +CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 +s351386683.317255 +e351386683.722909 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +xnormal +xx86_64 +lSLF07#2@88"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL351386683#351386683#0(0"0(0#0#0"4544028304#821" cd /Users/rowan/code/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL
0# + +CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 +s348887521.626568 +e348887521.650054 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +xnormal +xx86_64 +lSLF07#2@106"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework348887521#348887521#0(0"0(0#0#0"4623519376#819" cd /Users/rowan/code/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -install_name @executable_path/../Frameworks/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -mmacosx-version-min=10.5 -framework Cocoa -lmysqlclient -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework
0# + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 +s351093533.424011 +e351093533.536477 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +xnormal +xi386 +lSLF07#2@126"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL351093533#351093533#0(0"0(0#0#0"4566089360#855" cd /Users/rowan/code/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL
0# + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 +s351093532.906597 +e351093533.143415 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +xnormal +xx86_64 +lSLF07#2@128"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL351093532#351093533#0(0"0(0#0#0"4566089360#861" cd /Users/rowan/code/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL
0# + +CLd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 +s351389292.982396 +e351389293.317054 +r1 +xLd +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +xnormal +xx86_64 +lSLF07#2@118"Link /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL351389292#351389293#0(0"0(0#0#0"4785176208#1001" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug "-L/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL
0# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s351305970.680288 +e351305970.683712 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist351305970#351305970#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4575997696#230" cd /Users/rowan/code/SPMySQLFramework
builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist
0# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s348887521.544786 +e348887521.548292 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist348887521#348887521#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4623519488#239" cd /Users/rowan/code/SPMySQLFramework
builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist
0# + +CProcessInfoPlistFile /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +r0 + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348964063.306931 +e348964064.045425 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348964063#348964064#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4481736336#1693" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351389290.951857 +e351389292.272956 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351389290#351389292#0(0"0(0#0#99"/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch17336940800#1982" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-caljmhyizdgiwuatlisaecpykaxh/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s349286504.307800 +e349286505.895897 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch349286504#349286505#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4603338384#1672" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s350330267.452714 +e350330268.654275 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch350330267#350330268#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4596461200#1682" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348937397.517447 +e348937398.178688 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348937397#348937398#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4546195088#1693" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386275.414661 +e351386276.601755 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351386275#351386276#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4488392336#1682" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351096144.652465 +e351096145.473201 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +oclang: warning: argument unused during compilation: '-flto' +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351096144#351096145#0(60"clang: warning: argument unused during compilation: '-flto'
0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4563705488#1688" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351092561.457146 +e351092562.279771 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351092561#351092562#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4553227920#1678" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers +s351305970.677018 +e351305970.680208 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +xVersions/Current/Headers +lSLF07#2@80"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers351305970#351305970#0(0"0(0#0#0"4575997584#156" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources +s351305970.672373 +e351305970.677773 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +xVersions/Current/Resources +lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources351305970#351305970#0(0"0(0#0#0"4575997584#160" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +s351305970.673003 +e351305970.676831 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +xVersions/Current/SPMySQL +lSLF07#2@80"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL351305970#351305970#0(0"0(0#0#0"4575997584#156" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/SPMySQL /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A +s351305970.671411 +e351305970.676692 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +xA +lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current351305970#351305970#0(0"0(0#0#0"4575997584#142" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers +s348887521.541748 +e348887521.544706 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +xVersions/Current/Headers +lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers348887521#348887521#0(0"0(0#0#0"4623519376#165" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources +s348887521.536417 +e348887521.542622 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +xVersions/Current/Resources +lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources348887521#348887521#0(0"0(0#0#0"4623519376#169" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework +s348887521.537128 +e348887521.541676 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +xVersions/Current/SPMySQLFramework +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework348887521#348887521#0(0"0(0#0#0"4623519376#183" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/SPMySQLFramework /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A +s348887521.535560 +e348887521.541537 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +xA +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current348887521#348887521#0(0"0(0#0#0"4623519376#151" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current
0# + +CSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers +r0 + +CSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources +r0 + +CSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +r0 + +CSymLink /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A +r0 + +CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +s351386683.730291 +e351386683.740855 +r1 +xTouch +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +lSLF07#2@70"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework351386683#351386683#0(0"0(0#0#0"4544028304#129" cd /Users/rowan/code/SPMySQLFramework
/usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework
0# + +CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +s348887521.650171 +e348887521.653602 +r1 +xTouch +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +lSLF07#2@79"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework348887521#348887521#0(0"0(0#0#0"4623519376#138" cd /Users/rowan/code/SPMySQLFramework
/usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework
0# + +CTouch /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework +s351389622.487109 +e351389622.490715 +r1 +xTouch +x/Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework +lSLF07#2@100"Touch /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework351389622#351389622#0(0"0(0#0#0"4573408912#189" cd /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework
/usr/bin/touch -c /Users/rowan/code/spmysqlintegration/Frameworks/SPMySQLFramework/build/Debug/SPMySQL.framework
0# + diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state~.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state~.dat new file mode 100644 index 00000000..7b332576 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/build-state~.dat @@ -0,0 +1,1941 @@ +TSPMySQL.framework +v7 +r0 +t351305972.548352 +cCheck dependencies +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers +cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +cCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +cCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 +cTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework + +N/Developer/SDKs/MacOSX10.5.sdk +c000000004C238B9B00000000000000EE +t1277397915 +s238 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h +c0000000040C4AA6800000000000001E5 +t1086630504 +s485 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h +c000000004864A1C900000000000012EE +t1214554569 +s4846 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/Headers/SCNetworkReachability.h +c0000000047BAC506000000000000235B +t1203422470 +s9051 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration +c000000004B760CDC00000000000371FC +t1266027740 +s225788 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h +c0000000047E8839E0000000000000746 +t1206420382 +s1862 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h +c0000000047BA9932000000000000380F +t1203411250 +s14351 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h +c0000000047BA9930000000000000055B +t1203411248 +s1371 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h +c0000000047E883D2000000000000290F +t1206420434 +s10511 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/libz.dylib +c000000004B760D050000000000006EE8 +t1266027781 +s28392 + +N/System/Library/Frameworks/Cocoa.framework/Cocoa +c000000004E2DE5120000000000006560 +t1311630610 +s25952 + +N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings +c000000004F0A19CD0000000000000030 +t1326062029 +s48 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h +c000000004F130858000000000000070C +t1326647384 +s1804 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h +c000000004F13085800000000000005D0 +t1326647384 +s1488 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h +c000000004F13085800000000000083EB +t1326647384 +s33771 +i<standards.h> +i<sys/types.h> +i<winsock2.h> +i"mysql_version.h" +i"mysql_com.h" +i"mysql_time.h" +i"my_list.h" +i"typelib.h" +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h +c000000004F130858000000000000503F +t1326647384 +s20543 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h +c000000004F1308580000000000000831 +t1326647384 +s2097 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h +c000000004F130858000000000000032B +t1326647384 +s811 +i<custom_conf.h> + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h +c000000004F13085800000000000005DD +t1326647384 +s1501 +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a +c000000004F13085B0000000000445164 +t1326647387 +s4477284 + +N/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h +c000000004F3FDF050000000000000EFA +t1329585925 +s3834 +i"Ping & KeepAlive.h" +i"Locking.h" +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/SPMySQL.h +c000000004F404968000000000000088E +t1329613160 +s2190 +i"SPMySQLConstants.h" +i"SPMySQLStringAdditions.h" +i"SPMySQLConnectionDelegate.h" +i"SPMySQLConnectionProxy.h" +i"SPMySQLConnection.h" +i"Delegate & Proxy.h" +i"Databases & Tables.h" +i"Max Packet Size.h" +i"Querying & Preparation.h" +i"Encoding.h" +i"Server Info.h" +i"SPMySQLResult.h" +i"SPMySQLStreamingResult.h" +i"SPMySQLFastStreamingResult.h" +i"Field Definitions.h" +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/SPMySQLConnection Private APIs.h +c000000004F3CF8880000000000000A80 +t1329395848 +s2688 +i"Ping & KeepAlive.h" +i"Locking.h" +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h +c000000004F307BEF00000000000009A8 +t1328577519 +s2472 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +c000000004F307BE80000000000000EF3 +t1328577512 +s3827 +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h +c000000004F3800F70000000000000711 +t1329070327 +s1809 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +c000000004F3D0465000000000000245E +t1329398885 +s9310 +i"Databases & Tables.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h +c000000004F3452E5000000000000057E +t1328829157 +s1406 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +c000000004F3CFAE100000000000011ED +t1329396449 +s4589 +i"Delegate & Proxy.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +c000000004F1CBCB7000000000000041D +t1327283383 +s1053 +i"Encoding & Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h +c000000004F340C6A000000000000079C +t1328811114 +s1948 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +c000000004F330C610000000000003AAA +t1328745569 +s15018 +i"Encoding.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking +c000000004F1C42CD00000000000000BD +t1327252173 +s189 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h +c000000004F307BFB00000000000005E6 +t1328577531 +s1510 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +c000000004F3CFAF70000000000000E61 +t1329396471 +s3681 +i"Locking.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h +c000000004F398B4100000000000005F3 +t1329171265 +s1523 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +c000000004F3CFAF30000000000001A0E +t1329396467 +s6670 +i"Max Packet Size.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +c000000004F3172E100000000000007C2 +t1328640737 +s1986 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +c000000004F3D27B20000000000001DBA +t1329407922 +s7610 +i"Ping & KeepAlive.h" +i"Locking.h" +i<pthread.h> + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h +c000000004F3DACAE00000000000011A6 +t1329441966 +s4518 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +c000000004F4048F50000000000005507 +t1329613045 +s21767 +i"SPMySQLConnection.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +c000000004F1C1C690000000000000419 +t1327242345 +s1049 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h +c000000004F3848660000000000000761 +t1329088614 +s1889 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +c000000004F3CFAEF0000000000001614 +t1329396463 +s5652 +i"Server Info.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h +c000000004F3D27C200000000000014E2 +t1329407938 +s5346 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +c000000004F3D2AD30000000000006FD6 +t1329408723 +s28630 +i"SPMySQL Private APIs.h" +i<mach/mach_time.h> +i<pthread.h> +i<SystemConfiguration/SCNetworkReachability.h> + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h +c000000004F36BCAB0000000000001041 +t1328987307 +s4161 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h +c000000004F327BDC0000000000000884 +t1328708572 +s2180 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h +c000000004F39B228000000000000092D +t1329181224 +s2349 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h +c000000004F401EC20000000000000768 +t1329602242 +s1896 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +c000000004F404865000000000000364D +t1329612901 +s13901 +i"SPMySQLFastStreamingResult.h" +i"SPMySQL Private APIs.h" +i<pthread.h> + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch +c000000004F307C5D00000000000000E7 +t1328577629 +s231 +i<Cocoa/Cocoa.h> +i"mysql.h" +i"SPMySQL.h" +i"SPMySQLUtilities.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m +c000000004F3FFADE0000000000003EB1 +t1329593054 +s16049 +i"SPMySQLStreamingResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullyStreamingResult.h +c000000004F3ED347000000000000099C +t1329517383 +s2460 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h +c000000004F32785D00000000000006DB +t1328707677 +s1755 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +c000000004F3D044500000000000069C8 +t1329398853 +s27080 +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h +c000000004F307BB8000000000000059A +t1328577464 +s1434 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +c000000004F307BB10000000000004B47 +t1328577457 +s19271 +i"Field Definitions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h +c000000004F3FEA7E0000000000001137 +t1329588862 +s4407 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +c000000004F40439E0000000000003B94 +t1329611678 +s15252 +i"SPMySQLResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h +c000000004F401EC60000000000000796 +t1329602246 +s1942 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +c000000004F40481C0000000000001CFD +t1329612828 +s7421 +i"SPMySQLStreamingResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.h +c000000004F32FAD700000000000005CE +t1328741079 +s1486 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +c000000004F32FB4B0000000000000823 +t1328741195 +s2083 +i"SPMySQLStringAdditions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLUtilities.h +c000000004F307D2800000000000006F7 +t1328577832 +s1783 +i<mach/mach_time.h> + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +t1329613172 +s204 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +t1329613170 +s1809 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +t1329613170 +s1406 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h +t1327282092 +s1041 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +t1329613170 +s1948 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +t1329613170 +s1434 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +t1329613170 +s1523 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +t1329613170 +s4518 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h +t1327593846 +s1013 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +t1329613170 +s2190 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +t1329613170 +s5346 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +t1329613170 +s4161 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +t1329613170 +s2180 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +t1329613170 +s2349 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +t1329613170 +s1896 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +t1329613170 +s1755 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +t1329613170 +s4407 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +t1329613170 +s1942 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +t1329613170 +s1889 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1329613170 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +t1329613170 +s1144 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o +t1327590974 +s18412 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +t1327590974 +s9938712 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +t1329613172 +s1248184 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +t1327194721 +s204 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +t3 +s33 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +t1327194721 +s1975 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +t1327194721 +s974 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1327194721 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +t1327194721 +s1170 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +t1327194721 +s19824 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +t1329400733 +s19884 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +t1329400733 +s27352 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +t1329400733 +s20220 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +t1329400733 +s37304 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +t1329400733 +s42740 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o +t1329400733 +s18212 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +t1329400733 +s24800 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +t1329400732 +s24544 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +t1329400733 +s40348 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +t1329400733 +s1044140 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList +c000000004F3D0B9C00000000000007C4 +t1329400732 +s1988 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +t1329400733 +s73428 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +t1329400733 +s52104 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +t1329400733 +s34100 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +t1329400733 +s18328 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +t1329400733 +s4644 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +t1329400733 +s24188 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +t1329613171 +s22200 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +t1329613172 +s33788 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +t1329613172 +s24288 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o +t1327282093 +s884 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +t1329613171 +s44260 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +t1329613172 +s58808 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +t1329613172 +s20496 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +t1329613172 +s30400 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +t1329613171 +s29792 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +t1329613172 +s63460 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o +t1327974108 +s860 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +t1329400733 +s1221296 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList +c000000004F4049720000000000000873 +t1329613170 +s2163 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +t1329613172 +s108652 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +t1329613172 +s42908 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList +c000000004F1B6219000000000000021D +t1327194649 +s541 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +t1329613172 +s63652 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +t1329613172 +s49344 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +t1329613172 +s31548 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +t1329613172 +s5924 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +t1329613171 +s28608 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +t1329612912 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +t1329612912 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist +t1329612912 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFullStreamingResult.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +t1329612919 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +t1329612912 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +t1329612911 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +t1329612911 +s276 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +t1327271264 +s9934372 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +t1328637468 +s9956412 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +t1327244598 +s9932416 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth +t1329613171 +s9978988 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth +t1329403345 +s9973036 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth +t1329399762 +s10910168 + +NResources/Info.plist +c000000004F0A20EC0000000000000357 +t1326063852 +s855 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" +s351305711.277860 +e351305711.493304 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +lSLF07#2@91"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351305711#351305711#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4464422544#1843" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" +s351305711.947543 +e351305712.135080 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +lSLF07#2@99"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351305711#351305712#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4464422544#1861" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" +s351305711.858670 +e351305712.025641 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351305711#351305712#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4464422544#1857" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" +s351305711.061701 +e351305711.282266 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +lSLF07#2@89"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351305711#351305711#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4464422544#1839" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" +s351305711.282397 +e351305711.484126 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +lSLF07#2@88"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351305711#351305711#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4464422544#1837" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" +s351305711.754318 +e351305711.947225 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +lSLF07#2@96"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351305711#351305712#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4464422544#1855" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" +s351305711.060565 +e351305711.277720 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351305711#351305711#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4464422544#1857" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" +s351305711.280217 +e351305711.485167 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +lSLF07#2@103"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351305711#351305711#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4464422544#1869" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" +s351305711.062953 +e351305711.279889 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +lSLF07#2@92"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351305711#351305711#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4464422544#1847" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" +s351305711.493431 +e351305711.689714 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +lSLF07#2@94"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351305711#351305711#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4464422544#1855" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist"
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +s351305711.059194 +e351305711.491198 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +lSLF07#2@69"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351305711#351305711#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4464422544#1826" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +s351305711.491335 +e351305712.027748 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +lSLF07#2@78"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351305711#351305712#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4464422544#1844" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m +r0 + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +s351305711.488955 +e351305719.862589 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +lSLF07#2@71"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351305711#351305719#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4464422544#1830" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +s351305711.485299 +e351305711.754186 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +lSLF07#2@65"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351305711#351305711#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4464422544#1818" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +s351305712.025774 +e351305712.190584 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351305712#351305712#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4464422544#1836" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +s351305711.696149 +e351305711.858533 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351305711#351305712#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4464422544#1836" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist
0# + +CCheck dependencies +r0 +lSLF07#2@18"Check dependencies351305970#351305970#0(0"0(0#1#0"4575999296#0"0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.356219 +e351093533.423922 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351093533#351093533#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4566089360#1837" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.314225 +e351093533.384062 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351093533#351093533#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4566089360#1833" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.241830 +e351093533.356050 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351093533#351093533#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4566089360#1831" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.311400 +e351093533.389820 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351093533#351093533#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4566089360#1831" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093532.909342 +e351093533.002616 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351093532#351093533#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4566089360#1833" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.078124 +e351093533.233582 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351093533#351093533#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4566089360#1845" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.002775 +e351093533.077953 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351093533#351093533#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4566089360#1823" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Server Info.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.282641 +e351305972.369585 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351305972#351305972#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4575997584#1843" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.246504 +e351305972.327581 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351305972#351305972#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4575997584#1839" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348974893.569529 +e348974893.613561 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@102"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m348974893#348974893#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m4617666192#1860" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding & Conversion.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.141402 +e351305972.282271 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351305972#351305972#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4575997584#1837" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.209224 +e351305972.316375 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351305972#351305972#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4575997584#1837" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.580910 +e351305971.811974 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351305971#351305972#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4575997584#1839" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.812170 +e351305972.141213 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351305971#351305972#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4575997584#1851" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.583220 +e351305971.804314 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351305971#351305972#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4575997584#1829" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o"
0# + +CCompileC build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s349283773.971303 +e349283774.259882 +r1 +xCompileC +xbuild/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m:88:9:{88:9-88:33}: warning: method '-flushMultiResults' not found (return type defaults to 'id') +o [self flushMultiResults]; +o ^~~~~~~~~~~~~~~~~~~~~~~~ +o1 warning generated. +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m349283773#349283774#0(268"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m:88:9:{88:9-88:33}: warning: method '-flushMultiResults' not found (return type defaults to 'id')
[self flushMultiResults];
^~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
1(22@68"Method '-flushMultiResults' not found (return type defaults to 'id')349283774#0#178#0(6@80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m348976495#88#9#0#0#49"method * not found (return type defaults to 'id')1(6@80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m348976495#88#9#88#33#0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4483198608#1789" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Locking.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.019170 +e351093533.085021 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351093533#351093533#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4566089360#1819" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Conversion.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093532.910800 +e351093533.019019 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351093532#351093533#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4566089360#1815" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Encoding.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.085189 +e351093533.156564 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351093533#351093533#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4566089360#1813" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/Locking.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093532.907984 +e351093533.112078 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351093532#351093533#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4566089360#1802" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.143594 +e351093533.371441 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351093533#351093533#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4566089360#1806" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.112422 +e351093533.311221 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351093533#351093533#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4566089360#1794" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.156743 +e351093533.254840 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351093533#351093533#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4566089360#1812" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351093533.255195 +e351093533.314064 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351093533#351093533#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4566089360#1812" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.804476 +e351305971.887131 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351305971#351305972#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4575997584#1825" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.582020 +e351305971.860284 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351305971#351305972#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4575997584#1821" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.860667 +e351305972.121638 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351305971#351305972#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4575997584#1819" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s349666908.814076 +e349666908.859934 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m349666908#349666908#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m4570701456#1821" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/Querying.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.579872 +e351305972.157012 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351305971#351305972#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4575997584#1808" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.132173 +e351305972.246330 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@78"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351305972#351305972#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4575997584#1826" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFullStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFullStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.121997 +e351305972.338493 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351305972#351305972#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4575997584#1812" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305971.887401 +e351305972.132008 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351305971#351305972#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4575997584#1800" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.316529 +e351305972.387143 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351305972#351305972#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4575997584#1818" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305972.157173 +e351305972.200172 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351305972#351305972#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4575997584#1818" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o
0# + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s351305970.749404 +e351305970.858355 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4575997584#365" cd /Users/rowan/code/SPMySQLFramework
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/English.lproj
0# + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s348887521.562165 +e348887521.625799 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings348887521#348887521#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4623519376#374" cd /Users/rowan/code/SPMySQLFramework
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj
0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +s351305970.712961 +e351305970.732881 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +xSource/SPMySQLConnection Categories/Databases & Tables.h +lSLF07#2@61"Copy Source/SPMySQLConnection Categories/Databases & Tables.h351305970#351305970#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h4575997584#403" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +s351305970.712209 +e351305970.740798 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +xSource/SPMySQLConnection Categories/Delegate & Proxy.h +lSLF07#2@59"Copy Source/SPMySQLConnection Categories/Delegate & Proxy.h351305970#351305970#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h4575997584#401" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h" "Source/SPMySQLConnection Categories/Encoding & Conversion.h" +s348974892.484151 +e348974892.511762 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Encoding & Conversion.h +xSource/SPMySQLConnection Categories/Encoding & Conversion.h +lSLF07#2@64"Copy Source/SPMySQLConnection Categories/Encoding & Conversion.h348974892#348974892#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h4617666192#385" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +s351305970.709841 +e351305970.724154 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +xSource/SPMySQLResult Categories/Field Definitions.h +lSLF07#2@56"Copy Source/SPMySQLResult Categories/Field Definitions.h351305970#351305970#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h4575997584#398" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +s351305970.711449 +e351305970.733648 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +xSource/SPMySQLConnection Categories/Max Packet Size.h +lSLF07#2@58"Copy Source/SPMySQLConnection Categories/Max Packet Size.h351305970#351305970#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h4575997584#400" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +s351305970.685050 +e351305970.708953 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +xSource/SPMySQLConnection Categories/Querying & Preparation.h +lSLF07#2@65"Copy Source/SPMySQLConnection Categories/Querying & Preparation.h351305970#351305970#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h4575997584#407" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +s351305970.686630 +e351305970.709716 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Server Info.h +xSource/SPMySQLConnection Categories/Server Info.h +lSLF07#2@54"Copy Source/SPMySQLConnection Categories/Server Info.h351305970#351305970#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h4575997584#396" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +s351305970.685850 +e351305970.709531 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Encoding.h +xSource/SPMySQLConnection Categories/Encoding.h +lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Encoding.h351305970#351305970#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h4575997584#393" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h "Source/SPMySQLConnection Categories/Querying.h" +s349286646.091209 +e349286646.124156 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/Querying.h +xSource/SPMySQLConnection Categories/Querying.h +lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Querying.h349286646#349286646#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h4481736336#393" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.h" /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h +s351305970.687482 +e351305970.714200 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +xSPMySQL.h +lSLF07#2@14"Copy SPMySQL.h351305970#351305970#0(0"0(0#0#44"/Users/rowan/code/SPMySQLFramework/SPMySQL.h4575997584#354" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/SPMySQL.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s351305970.683793 +e351305970.708220 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h351305970#351305970#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4575997584#371" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +s351305970.688275 +e351305970.723280 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +xSource/SPMySQLConnectionDelegate.h +lSLF07#2@39"Copy Source/SPMySQLConnectionDelegate.h351305970#351305970#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h4575997584#379" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +s351305970.710781 +e351305970.732411 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +xSource/SPMySQLConnectionProxy.h +lSLF07#2@36"Copy Source/SPMySQLConnectionProxy.h351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h4575997584#376" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s351305970.684483 +e351305970.708660 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h351305970#351305970#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4575997584#370" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h +s351305970.702868 +e351305970.723794 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +xSource/SPMySQLFastStreamingResult.h +lSLF07#2@40"Copy Source/SPMySQLFastStreamingResult.h351305970#351305970#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h4575997584#380" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLFullyStreamingResult.h Source/SPMySQLFullyStreamingResult.h +r0 + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +s351305970.689810 +e351305970.732608 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +xSource/SPMySQLGeometryData.h +lSLF07#2@33"Copy Source/SPMySQLGeometryData.h351305970#351305970#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h4575997584#373" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +s351305970.689068 +e351305970.714380 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +xSource/SPMySQLResult.h +lSLF07#2@27"Copy Source/SPMySQLResult.h351305970#351305970#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h4575997584#367" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +s351305970.714493 +e351305970.740982 +r1 +xCpHeader +xbuild/Debug/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +xSource/SPMySQLStreamingResult.h +lSLF07#2@36"Copy Source/SPMySQLStreamingResult.h351305970#351305970#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h4575997584#376" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s348887521.548409 +e348887521.561731 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h348887521#348887521#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4623519376#359" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s348887521.549428 +e348887521.562097 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h348887521#348887521#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4623519376#358" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers
0# + +CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/Locking "Source/SPMySQLConnection Categories/Locking" +r0 + +CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +s348964064.046418 +e348964064.130069 +r1 +xCpResource +xbuild/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth348964064#348964064#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth4481736336#469" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources
0# + +CCpResource build/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +s349283773.968481 +e349283774.098447 +r1 +xCpResource +xbuild/Debug/SPMySQL.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth349283773#349283774#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth4483198608#469" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources
0# + +CCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" +s351093598.347160 +e351093598.359672 +r1 +xCreateUniversalBinary +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +xnormal +xx86_64 i386 +lSLF07#2@91"CreateUniversalBinary build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386"351093598#351093598#0(0"0(0#0#46"/Users/rowan/code/SPMySQLFramework/x86_64 i3864563705488#406" cd /Users/rowan/code/SPMySQLFramework
/usr/bin/lipo -create /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -output /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL
0# + +CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL normal x86_64 +s351305972.387268 +e351305972.543329 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL +xnormal +xx86_64 +lSLF07#2@88"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL351305972#351305972#0(0"0(0#0#0"4575997584#821" cd /Users/rowan/code/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/SPMySQL
0# + +CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 +s348887521.626568 +e348887521.650054 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +xnormal +xx86_64 +lSLF07#2@106"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework348887521#348887521#0(0"0(0#0#0"4623519376#819" cd /Users/rowan/code/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -install_name @executable_path/../Frameworks/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -mmacosx-version-min=10.5 -framework Cocoa -lmysqlclient -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework
0# + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 +s351093533.424011 +e351093533.536477 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +xnormal +xi386 +lSLF07#2@126"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL351093533#351093533#0(0"0(0#0#0"4566089360#855" cd /Users/rowan/code/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/i386/SPMySQL
0# + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 +s351093532.906597 +e351093533.143415 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +xnormal +xx86_64 +lSLF07#2@128"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL351093532#351093533#0(0"0(0#0#0"4566089360#861" cd /Users/rowan/code/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL
0# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s351305970.680288 +e351305970.683712 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist351305970#351305970#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4575997696#230" cd /Users/rowan/code/SPMySQLFramework
builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/A/Resources/Info.plist
0# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s348887521.544786 +e348887521.548292 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist348887521#348887521#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4623519488#239" cd /Users/rowan/code/SPMySQLFramework
builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348964063.306931 +e348964064.045425 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348964063#348964064#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4481736336#1693" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-asrufvhbmvrdfegkweppcitfttaf/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bjocmxonlqbfjacnnihvkuwrdvxi/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s349286504.307800 +e349286505.895897 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch349286504#349286505#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4603338384#1672" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cpnkzakizmngijhhnyovhwoomngc/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s350330267.452714 +e350330268.654275 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch350330267#350330268#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4596461200#1682" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-dphkpjtecvlrnnayukymuxyfimvk/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348937397.517447 +e348937398.178688 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348937397#348937398#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4546195088#1693" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351305970.858533 +e351305971.579762 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351305970#351305971#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4575997584#1682" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fmrkxdeshxhiaadqjuosoidbgqvf/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351096144.652465 +e351096145.473201 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +oclang: warning: argument unused during compilation: '-flto' +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351096144#351096145#0(60"clang: warning: argument unused during compilation: '-flto'
0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4563705488#1688" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-fubmmimdojejnnenkmudivflnhdl/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351092561.457146 +e351092562.279771 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351092561#351092562#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4553227920#1678" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-hdcnplfcteygnifqczafzezmhnhc/SPMySQLFramework_Prefix.pch.pth
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers Versions/Current/Headers +s351305970.677018 +e351305970.680208 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers +xVersions/Current/Headers +lSLF07#2@80"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers351305970#351305970#0(0"0(0#0#0"4575997584#156" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Headers
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources Versions/Current/Resources +s351305970.672373 +e351305970.677773 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources +xVersions/Current/Resources +lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources351305970#351305970#0(0"0(0#0#0"4575997584#160" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Resources
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +s351305970.673003 +e351305970.676831 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL +xVersions/Current/SPMySQL +lSLF07#2@80"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL351305970#351305970#0(0"0(0#0#0"4575997584#156" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/SPMySQL /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/SPMySQL
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current A +s351305970.671411 +e351305970.676692 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current +xA +lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current351305970#351305970#0(0"0(0#0#0"4575997584#142" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework/Versions/Current
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers +s348887521.541748 +e348887521.544706 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +xVersions/Current/Headers +lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers348887521#348887521#0(0"0(0#0#0"4623519376#165" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources +s348887521.536417 +e348887521.542622 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +xVersions/Current/Resources +lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources348887521#348887521#0(0"0(0#0#0"4623519376#169" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework +s348887521.537128 +e348887521.541676 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +xVersions/Current/SPMySQLFramework +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework348887521#348887521#0(0"0(0#0#0"4623519376#183" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/SPMySQLFramework /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A +s348887521.535560 +e348887521.541537 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +xA +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current348887521#348887521#0(0"0(0#0#0"4623519376#151" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current
0# + +CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +s351305972.543411 +e351305972.548185 +r1 +xTouch +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework +lSLF07#2@70"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework351305972#351305972#0(0"0(0#0#0"4575997584#129" cd /Users/rowan/code/SPMySQLFramework
/usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQL.framework
0# + +CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +s348887521.650171 +e348887521.653602 +r1 +xTouch +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +lSLF07#2@79"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework348887521#348887521#0(0"0(0#0#0"4623519376#138" cd /Users/rowan/code/SPMySQLFramework
/usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework
0# + diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList new file mode 100644 index 00000000..ee6600fd --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList @@ -0,0 +1,4 @@ +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQL.framework.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQL.framework.dep new file mode 100644 index 00000000..4f116615 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQL.framework.dep @@ -0,0 +1,26 @@ +8c5868825956029fc6e9b5193092893d 7562accb3cc8468bc67d7d1a6b953e72 ffffffffffffffffffffffffffffffff 864 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o +8c58688259560293c6e9b51930928937 6e88017e4afc3b357957be8f0a5c6c71 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +8c58688259560292c6e9b5193092893a c55e6368c0109bda564017de6cac619d ffffffffffffffffffffffffffffffff 880 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +8c5868825904182cc6e9b51930927cba 031bcf00d0d77e1624dee06851e663a6 ffffffffffffffffffffffffffffffff 30944 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +6f09ddca8eca2e7ded449cf19c21fcae 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +ddaf01dd2bbce412cdb434235cc79158 c84f5c95718af3fdaaa6238e43032d32 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +000000000f84bb7e000000000000f1eb 8c5868821992b438c6e9b51930928bf0 ffffffffffffffffffffffffffffffff 9930088 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +8c58688259041adac6e9b51930927e0b a225c4a5d718d1caae97862d269868c8 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o +00000000000000000000000000000000 13c8141671d4cdeaf647733488f3de4f ffffffffffffffffffffffffffffffff 9930088 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +00000000000000000000000000000000 f26ee01a21b602ddd1b00b4abc262ad2 ffffffffffffffffffffffffffffffff 4303 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh +ffffffffffffffffffffffffffffffff 256294b74220bb5249fc198e64936057 ffffffffffffffffffffffffffffffff 9811836 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap Binary files differnew file mode 100644 index 00000000..4b4f3bae --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap Binary files differnew file mode 100644 index 00000000..dd8b535d --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap Binary files differnew file mode 100644 index 00000000..ae239724 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap Binary files differnew file mode 100644 index 00000000..75089206 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.dep new file mode 100644 index 00000000..4f116615 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.dep @@ -0,0 +1,26 @@ +8c5868825956029fc6e9b5193092893d 7562accb3cc8468bc67d7d1a6b953e72 ffffffffffffffffffffffffffffffff 864 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o +8c58688259560293c6e9b51930928937 6e88017e4afc3b357957be8f0a5c6c71 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +8c58688259560292c6e9b5193092893a c55e6368c0109bda564017de6cac619d ffffffffffffffffffffffffffffffff 880 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +8c5868825904182cc6e9b51930927cba 031bcf00d0d77e1624dee06851e663a6 ffffffffffffffffffffffffffffffff 30944 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +6f09ddca8eca2e7ded449cf19c21fcae 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +ddaf01dd2bbce412cdb434235cc79158 c84f5c95718af3fdaaa6238e43032d32 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +000000000f84bb7e000000000000f1eb 8c5868821992b438c6e9b51930928bf0 ffffffffffffffffffffffffffffffff 9930088 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +8c58688259041adac6e9b51930927e0b a225c4a5d718d1caae97862d269868c8 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o +00000000000000000000000000000000 13c8141671d4cdeaf647733488f3de4f ffffffffffffffffffffffffffffffff 9930088 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +00000000000000000000000000000000 f26ee01a21b602ddd1b00b4abc262ad2 ffffffffffffffffffffffffffffffff 4303 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh +ffffffffffffffffffffffffffffffff 256294b74220bb5249fc198e64936057 ffffffffffffffffffffffffffffffff 9811836 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.hmap Binary files differnew file mode 100644 index 00000000..61085179 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework~.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework~.dep new file mode 100644 index 00000000..d5962a30 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework~.dep @@ -0,0 +1,26 @@ +afdc31850786cd60286b633ffd235a8b 2efd157f34ab49b36f8bb7e7866460a3 ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +00000000000000000000000000000000 f5cd55399ce65f951254a7fa721a173b ffffffffffffffffffffffffffffffff 33 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +e32bcd13bc178c36ce0cbf634f5f28e2 291f16684f87446832a06e893a7d3b6c ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +00000000000000000000000000000000 45f61f69d3e9a17c33357df04fbfa9ae ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +ddaf01dd2bbce412cdb434235cc79158 089ab0daf8c610e06f89dc4022018b17 ffffffffffffffffffffffffffffffff 19824 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +000000004f0a19cd0000000000000030 60508a7f59a546b22854d09f761eea21 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 7cfe4c7af38fadce1f844d99be62eb7e ffffffffffffffffffffffffffffffff 974 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 9093f63f8b98e34a4f57f411e129e90f ffffffffffffffffffffffffffffffff 1975 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 839d56c5c2dbdc6cb1c3ef40f2232f2c ffffffffffffffffffffffffffffffff 1170 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +8c5868825956029fc6e9b5193092893d 7562accb3cc8468bc67d7d1a6b953e72 ffffffffffffffffffffffffffffffff 864 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o +8c58688259560293c6e9b51930928937 6e88017e4afc3b357957be8f0a5c6c71 ffffffffffffffffffffffffffffffff 884 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +8c58688259560292c6e9b5193092893a c55e6368c0109bda564017de6cac619d ffffffffffffffffffffffffffffffff 880 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +8c5868825904182cc6e9b51930927cba 031bcf00d0d77e1624dee06851e663a6 ffffffffffffffffffffffffffffffff 30944 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +000000000f84bb7e000000000000f1eb 8c5868821992b438c6e9b51930928bf0 ffffffffffffffffffffffffffffffff 9930088 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +00000000000000000000000000000000 e32bcd13bc178c36ce0cbf634f5f28e2 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +8c58688259041adac6e9b51930927e0b a225c4a5d718d1caae97862d269868c8 ffffffffffffffffffffffffffffffff 860 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o +00000000000000000000000000000000 13c8141671d4cdeaf647733488f3de4f ffffffffffffffffffffffffffffffff 9930088 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +00000000000000000000000000000000 f26ee01a21b602ddd1b00b4abc262ad2 ffffffffffffffffffffffffffffffff 4303 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh +ffffffffffffffffffffffffffffffff 256294b74220bb5249fc198e64936057 ffffffffffffffffffffffffffffffff 9811836 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state.dat new file mode 100644 index 00000000..81439798 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state.dat @@ -0,0 +1,573 @@ +TSPMySQLFramework +v7 +r0 +t348887378.697721 +cCheck dependencies +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework +cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist +cCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +cCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 +cTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework + +N/Developer/SDKs/MacOSX10.5.sdk +c000000004C238B9B00000000000000EE +t1277397915 +s238 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h +c0000000040C4AA6800000000000001E5 +t1086630504 +s485 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h +c0000000047BA9930000000000000055B +t1203411248 +s1371 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h +c0000000047E883D2000000000000290F +t1206420434 +s10511 + +N/System/Library/Frameworks/Cocoa.framework/Cocoa +c000000004E2DE5120000000000006560 +t1311630610 +s25952 + +N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings +c000000004F0A19CD0000000000000030 +t1326062029 +s48 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h +c000000004F130858000000000000070C +t1326647384 +s1804 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h +c000000004F13085800000000000005D0 +t1326647384 +s1488 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h +c000000004F13085800000000000083EB +t1326647384 +s33771 +i<standards.h> +i<sys/types.h> +i<winsock2.h> +i"mysql_version.h" +i"mysql_com.h" +i"mysql_time.h" +i"my_list.h" +i"typelib.h" +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h +c000000004F130858000000000000503F +t1326647384 +s20543 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h +c000000004F1308580000000000000831 +t1326647384 +s2097 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h +c000000004F130858000000000000032B +t1326647384 +s811 +i<custom_conf.h> + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h +c000000004F13085800000000000005DD +t1326647384 +s1501 +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a +c000000004F13085B0000000000445164 +t1326647387 +s4477284 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient_r.a +c000000004F13085B000000000044DF24 +t1326647387 +s4513572 + +N/Users/rowan/code/SPMySQLFramework/SPMySQLFramework_Prefix.pch +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h +c000000004F12164C0000000000000435 +t1326585420 +s1077 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +c000000004F1216570000000000000439 +t1326585431 +s1081 +i"Encoding & Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +c000000004F12112300000000000000E9 +t1326584099 +s233 +i"Encoding & Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.m +c000000004F120FE000000000000000C5 +t1326583776 +s197 +i"KeepAlive.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +c000000004F121662000000000000042B +t1326585442 +s1067 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +c000000004F121678000000000000042A +t1326585464 +s1066 +i"Ping & KeepAlive.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying +c000000004F12107E00000000000000C0 +t1326583934 +s192 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +c000000004F12159C0000000000000410 +t1326585244 +s1040 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h +c000000004F121685000000000000041F +t1326585477 +s1055 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +c000000004F1216920000000000000419 +t1326585490 +s1049 +i"Server Info.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.m +c000000004F1211E200000000000000C8 +t1326584290 +s200 +i"ServerInfo.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h +c000000004F12172C00000000000007B7 +t1326585644 +s1975 +i"mysql.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +c000000004F12176A00000000000006A1 +t1326585706 +s1697 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h +c000000004F120F3700000000000003CE +t1326583607 +s974 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch +c000000004F1213EF00000000000000E0 +t1326584815 +s224 +i<Cocoa/Cocoa.h> +i"SPMySQLConnection.h" +i"SPMySQLConstants.h" + +N/Users/rowan/code/SPMySQLFramework/build-mysql-client.sh +c000000004F1306D600000000000010CF +t1326646998 +s4303 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +t1327193631 +s204 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +t3 +s33 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +t1327192330 +s1975 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +t1327192330 +s974 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1327192330 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +t1327192330 +s1170 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o +t1327191371 +s860 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +t1327191371 +s9930088 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh +t1326678637 +s4303 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +t1327193631 +s19824 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +t1327192336 +s884 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +t1327192336 +s880 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +t1327192336 +s30944 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList +c000000004F1B590A0000000000000219 +t1327192330 +s537 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o +t1327192336 +s864 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +t1326678638 +s9811836 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +t1327192335 +s9930088 + +NInfo.plist +c00000000000000000000000000000000 +t2 +s0 + +NResources/Info.plist +c000000004F0A20EC0000000000000357 +t1326063852 +s855 + +CCheck dependencies +r0 +lSLF07#2@18"Check dependencies348887378#348887378#0(0"0(0#1#0"4643620160#0"0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.093542 +e348885136.470816 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@102"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m348885136#348885136#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m4659613328#1889" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.090667 +e348885136.473067 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m348885136#348885136#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4659613328#1879" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.095529 +e348885136.471001 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m348885136#348885136#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4659613328#1869" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o"
0# + +CCompileC build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348884170.905845 +e348884171.494330 +r1 +xCompileC +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m348884170#348884171#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m4623957648#1841" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.082008 +e348885136.564440 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m348885136#348885136#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4659613328#1848" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s348885130.166805 +e348885130.255427 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings348885130#348885130#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4659613328#374" cd /Users/rowan/code/SPMySQLFramework
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj
0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s348885130.154011 +e348885130.166572 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h348885130#348885130#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4659613328#359" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s348885130.154877 +e348885130.166731 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h348885130#348885130#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4659613328#358" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h "MySQL Client Libraries/include/my_alloc.h" +r0 + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h "MySQL Client Libraries/include/my_list.h" +r0 + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying "Source/SPMySQLConnection Categories/Querying" +r0 + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +s348278332.380397 +e348278332.430839 +r1 +xCpResource +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth348278332#348278332#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth4625407632#478" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources
0# + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +s348884170.904955 +e348884171.416232 +r1 +xCpResource +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth348884170#348884171#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth4623957648#478" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources
0# + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh build-mysql-client.sh +s348371437.536314 +e348371437.545070 +r1 +xCpResource +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh +xbuild-mysql-client.sh +lSLF07#2@26"Copy build-mysql-client.sh348371437#348371437#0(0"0(0#0#56"/Users/rowan/code/SPMySQLFramework/build-mysql-client.sh4660764304#356" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/build-mysql-client.sh /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources
0# + +CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 +s348886430.929802 +e348886431.970283 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +xnormal +xx86_64 +lSLF07#2@106"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework348886430#348886431#0(0"0(0#0#0"4621598352#818" cd /Users/rowan/code/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -install_name @executable_path/../Frameworks/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -mmacosx-version-min=10.5 -framework Cocoa -lmysqlclient -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework
0# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Info.plist +r0 + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s348885130.149865 +e348885130.153888 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist348885130#348885130#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4659613440#239" cd /Users/rowan/code/SPMySQLFramework
builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348371437.603436 +e348371439.026191 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348371437#348371439#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4660764304#1723" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885130.274373 +e348885136.081829 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348885130#348885136#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4659613328#1723" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers +s348885130.146238 +e348885130.149731 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +xVersions/Current/Headers +lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers348885130#348885130#0(0"0(0#0#0"4659613328#165" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources +s348885130.139953 +e348885130.145964 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +xVersions/Current/Resources +lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources348885130#348885130#0(0"0(0#0#0"4659613328#169" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework +s348885130.140931 +e348885130.146133 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +xVersions/Current/SPMySQLFramework +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework348885130#348885130#0(0"0(0#0#0"4659613328#183" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/SPMySQLFramework /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A +s348885130.138172 +e348885130.145709 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +xA +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current348885130#348885130#0(0"0(0#0#0"4659613328#151" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current
0# + +CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +s348886431.970369 +e348886431.981881 +r1 +xTouch +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +lSLF07#2@79"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework348886431#348886431#0(0"0(0#0#0"4621598352#138" cd /Users/rowan/code/SPMySQLFramework
/usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework
0# + diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state~.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state~.dat new file mode 100644 index 00000000..a792a264 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/build-state~.dat @@ -0,0 +1,573 @@ +TSPMySQLFramework +v7 +r0 +t348885137.132500 +cCheck dependencies +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework +cSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers +cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist +cCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +cCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 +cTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework + +N/Developer/SDKs/MacOSX10.5.sdk +c000000004C238B9B00000000000000EE +t1277397915 +s238 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h +c0000000040C4AA6800000000000001E5 +t1086630504 +s485 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h +c0000000047BA9930000000000000055B +t1203411248 +s1371 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h +c0000000047E883D2000000000000290F +t1206420434 +s10511 + +N/System/Library/Frameworks/Cocoa.framework/Cocoa +c000000004E2DE5120000000000006560 +t1311630610 +s25952 + +N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings +c000000004F0A19CD0000000000000030 +t1326062029 +s48 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h +c000000004F130858000000000000070C +t1326647384 +s1804 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h +c000000004F13085800000000000005D0 +t1326647384 +s1488 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h +c000000004F13085800000000000083EB +t1326647384 +s33771 +i<standards.h> +i<sys/types.h> +i<winsock2.h> +i"mysql_version.h" +i"mysql_com.h" +i"mysql_time.h" +i"my_list.h" +i"typelib.h" +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h +c000000004F130858000000000000503F +t1326647384 +s20543 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h +c000000004F1308580000000000000831 +t1326647384 +s2097 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h +c000000004F130858000000000000032B +t1326647384 +s811 +i<custom_conf.h> + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h +c000000004F13085800000000000005DD +t1326647384 +s1501 +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a +c000000004F13085B0000000000445164 +t1326647387 +s4477284 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient_r.a +c000000004F13085B000000000044DF24 +t1326647387 +s4513572 + +N/Users/rowan/code/SPMySQLFramework/SPMySQLFramework_Prefix.pch +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.h +c000000004F12164C0000000000000435 +t1326585420 +s1077 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +c000000004F1216570000000000000439 +t1326585431 +s1081 +i"Encoding & Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +c000000004F12112300000000000000E9 +t1326584099 +s233 +i"Encoding & Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.m +c000000004F120FE000000000000000C5 +t1326583776 +s197 +i"KeepAlive.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +c000000004F121662000000000000042B +t1326585442 +s1067 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +c000000004F121678000000000000042A +t1326585464 +s1066 +i"Ping & KeepAlive.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying +c000000004F12107E00000000000000C0 +t1326583934 +s192 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +c000000004F12159C0000000000000410 +t1326585244 +s1040 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h +c000000004F121685000000000000041F +t1326585477 +s1055 +i"SPMySQLConnection.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +c000000004F1216920000000000000419 +t1326585490 +s1049 +i"Server Info.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.h +c00000000000000000000000000000000 +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.m +c000000004F1211E200000000000000C8 +t1326584290 +s200 +i"ServerInfo.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h +c000000004F12172C00000000000007B7 +t1326585644 +s1975 +i"mysql.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +c000000004F12176A00000000000006A1 +t1326585706 +s1697 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h +c000000004F120F3700000000000003CE +t1326583607 +s974 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch +c000000004F1213EF00000000000000E0 +t1326584815 +s224 +i<Cocoa/Cocoa.h> +i"SPMySQLConnection.h" +i"SPMySQLConstants.h" + +N/Users/rowan/code/SPMySQLFramework/build-mysql-client.sh +c000000004F1306D600000000000010CF +t1326646998 +s4303 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +t1327192337 +s204 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +t3 +s33 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +t1327192330 +s1975 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +t1327192330 +s974 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1327192330 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +t1327192330 +s1170 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o +t1327191371 +s860 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +t1327191371 +s9930088 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh +t1326678637 +s4303 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +t1327192337 +s19824 + +N/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +t1327192336 +s884 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +t1327192336 +s880 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +t1327192336 +s30944 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList +c000000004F1B590A0000000000000219 +t1327192330 +s537 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o +t1327192336 +s864 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +t1326678638 +s9811836 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +t1327192335 +s9930088 + +NInfo.plist +c00000000000000000000000000000000 +t2 +s0 + +NResources/Info.plist +c000000004F0A20EC0000000000000357 +t1326063852 +s855 + +CCheck dependencies +r0 +lSLF07#2@18"Check dependencies348885130#348885130#0(0"0(0#1#0"4659615040#0"0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.093542 +e348885136.470816 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@102"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m348885136#348885136#0(0"0(0#0#94"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m4659613328#1889" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding & Conversion.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding & Conversion.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.090667 +e348885136.473067 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m348885136#348885136#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4659613328#1879" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Ping & KeepAlive.o"
0# + +CCompileC "build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.095529 +e348885136.471001 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m348885136#348885136#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4659613328#1869" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Server Info.o"
0# + +CCompileC build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348884170.905845 +e348884171.494330 +r1 +xCompileC +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m348884170#348884171#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m4623957648#1841" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying.m" -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/KeepAlive.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885136.082008 +e348885136.564440 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m348885136#348885136#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4659613328#1848" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLConnection.o
0# + +CCompileC build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/ServerInfo.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/ServerInfo.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s348885130.166805 +e348885130.255427 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings348885130#348885130#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4659613328#374" cd /Users/rowan/code/SPMySQLFramework
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/English.lproj
0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s348885130.154011 +e348885130.166572 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h348885130#348885130#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4659613328#359" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s348885130.154877 +e348885130.166731 +r1 +xCpHeader +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h348885130#348885130#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4659613328#358" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Headers
0# + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_alloc.h "MySQL Client Libraries/include/my_alloc.h" +r0 + +CCpHeader build/Debug/SPMySQLFramework.framework/Versions/A/Headers/my_list.h "MySQL Client Libraries/include/my_list.h" +r0 + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Querying "Source/SPMySQLConnection Categories/Querying" +r0 + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +s348278332.380397 +e348278332.430839 +r1 +xCpResource +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth348278332#348278332#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth4625407632#478" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources
0# + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +s348884170.904955 +e348884171.416232 +r1 +xCpResource +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/SPMySQLFramework_Prefix.pch.pth +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +lSLF07#2@183"Copy /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth348884170#348884171#0(0"0(0#0#178"/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth4623957648#478" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources
0# + +CCpResource build/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh build-mysql-client.sh +s348371437.536314 +e348371437.545070 +r1 +xCpResource +xbuild/Debug/SPMySQLFramework.framework/Versions/A/Resources/build-mysql-client.sh +xbuild-mysql-client.sh +lSLF07#2@26"Copy build-mysql-client.sh348371437#348371437#0(0"0(0#0#56"/Users/rowan/code/SPMySQLFramework/build-mysql-client.sh4660764304#356" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/build-mysql-client.sh /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources
0# + +CLd /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework normal x86_64 +s348885136.569985 +e348885137.125091 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework +xnormal +xx86_64 +lSLF07#2@106"Link /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework348885136#348885137#0(0"0(0#0#0"4659613328#819" cd /Users/rowan/code/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Debug "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Debug -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/Objects-normal/x86_64/SPMySQLFramework.LinkFileList -install_name /Users/rowan/Library/Frameworks/SPMySQLFramework.framework/Versions/A/SPMySQLFramework -mmacosx-version-min=10.5 -framework Cocoa -lmysqlclient -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/SPMySQLFramework
0# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Info.plist +r0 + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s348885130.149865 +e348885130.153888 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist348885130#348885130#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4659613440#239" cd /Users/rowan/code/SPMySQLFramework
builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/A/Resources/Info.plist
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-anfhadtqwgjkuqehckpbzzivbloq/SPMySQLFramework_Prefix.pch.pth SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +r0 + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348371437.603436 +e348371439.026191 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348371437#348371439#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4660764304#1723" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-bwsdlvhnwkvvbqankzxhmxknpnai/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s348885130.274373 +e348885136.081829 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch348885130#348885136#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4659613328#1723" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wselector -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/SPMySQLFramework-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Debug -I/Users/rowan/code/SPMySQLFramework/build/Debug/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Debug/SPMySQLFramework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ekredtebsrrlgbfalnjucskoaett/SPMySQLFramework_Prefix.pch.pth
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers Versions/Current/Headers +s348885130.146238 +e348885130.149731 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers +xVersions/Current/Headers +lSLF07#2@89"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers348885130#348885130#0(0"0(0#0#0"4659613328#165" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Headers
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources Versions/Current/Resources +s348885130.139953 +e348885130.145964 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources +xVersions/Current/Resources +lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources348885130#348885130#0(0"0(0#0#0"4659613328#169" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Resources
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework Versions/Current/SPMySQLFramework +s348885130.140931 +e348885130.146133 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework +xVersions/Current/SPMySQLFramework +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework348885130#348885130#0(0"0(0#0#0"4659613328#183" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/SPMySQLFramework /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/SPMySQLFramework
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current A +s348885130.138172 +e348885130.145709 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current +xA +lSLF07#2@98"Process /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current348885130#348885130#0(0"0(0#0#0"4659613328#151" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework/Versions/Current
0# + +CTouch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +s348885137.125179 +e348885137.132458 +r1 +xTouch +x/Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework +lSLF07#2@79"Touch /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework348885137#348885137#0(0"0(0#0#0"4659613328#138" cd /Users/rowan/code/SPMySQLFramework
/usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Debug/SPMySQLFramework.framework
0# + diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL Binary files differnew file mode 100755 index 00000000..8fe29d67 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList new file mode 100644 index 00000000..9fdfe40b --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList @@ -0,0 +1,16 @@ +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL Binary files differnew file mode 100755 index 00000000..ec8eb40c --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList new file mode 100644 index 00000000..7e49b0b0 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList @@ -0,0 +1,16 @@ +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap Binary files differnew file mode 100644 index 00000000..f8ade402 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap Binary files differnew file mode 100644 index 00000000..dd8b535d --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap Binary files differnew file mode 100644 index 00000000..98d0d0e0 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap Binary files differnew file mode 100644 index 00000000..6bf5b59c --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework.dep new file mode 100644 index 00000000..4de35ccd --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework.dep @@ -0,0 +1,95 @@ +439b6b267f8209890f723d28a23d486a 4b20757cc119b568f6a44f68071b314e ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist +439b6b267f8209890f723d28a23d486a 56aa669f6e2725c20e38e7e7b100d905 ffffffffffffffffffffffffffffffff 27688 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +a283a4cd629af2b1a1e0556e1d620019 962fbc27accfda8ad3442750db82c64e ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +a283a4cd629af2b1a1e0556e1d620019 9cf255ba5845a6c4b9aed1b7dfb7db8e ffffffffffffffffffffffffffffffff 35972 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +439b6b267f864e490f723d28a23d7232 860f100d264dcdc43237af622e039801 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist +439b6b267f864e490f723d28a23d7232 d78ca805184db49027f9b825e97a6a73 ffffffffffffffffffffffffffffffff 26136 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +a283a4cd629eb571a1e0556e1d623a41 38b57965a87836baa1b85daf14eadc93 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +a283a4cd629eb571a1e0556e1d623a41 a9cbc4f7c6077ff53bd1fb128b2ab06e ffffffffffffffffffffffffffffffff 33948 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +439b6b267f8be2df0f723d28a23d45ee a03c16154169482a8070ae62c60edf99 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist +439b6b267f8be2df0f723d28a23d45ee 9a70daac11d7e18e79bb71dea27f6399 ffffffffffffffffffffffffffffffff 20004 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +a283a4cd629319e7a1e0556e1d620d9d 9fe528a40af0f8ad7b06f6e81b69a93b ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +a283a4cd629319e7a1e0556e1d620d9d 6ae02c5d02e7f9b53b82c61113f8d492 ffffffffffffffffffffffffffffffff 24696 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +439b6b267f863b690f723d28a23d4e80 d48a27074632e1bf02be79dbd5f789b5 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist +439b6b267f863b690f723d28a23d4e80 f071e4c0016f18ad0ad39ddf9d594b22 ffffffffffffffffffffffffffffffff 23584 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +a283a4cd629ec051a1e0556e1d6206f3 75ce23c53f49731160d25dfa18d5b9c1 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +a283a4cd629ec051a1e0556e1d6206f3 00456ad484a527f49fcd5669eca79ed1 ffffffffffffffffffffffffffffffff 30528 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +439b6b267f8de6b70f723d28a23d59e6 2b30677c783716e865e04413bd92e5df ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist +439b6b267f8de6b70f723d28a23d59e6 c89c72d32dd6b6409906c0016fe0d3e5 ffffffffffffffffffffffffffffffff 4668 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +a283a4cd62951d8fa1e0556e1d621195 2d4ac9478dfe4f5aee1937c1c0748e17 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +a283a4cd62951d8fa1e0556e1d621195 3e0d8d0ef435ec6d557aa0535fa1b127 ffffffffffffffffffffffffffffffff 6260 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +439b6b267f8de7220f723d28a23d1ad6 b733e7c40a52dd8505c5b2796dd75995 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist +439b6b267f8de7220f723d28a23d1ad6 bd2b26673348000092076c5dfb198548 ffffffffffffffffffffffffffffffff 37748 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +a283a4cd62951c1aa1e0556e1d6252a5 b72e02bb369b9740087560158afdcbbe ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +a283a4cd62951c1aa1e0556e1d6252a5 c33e65fd13a1e9c83ee5cf892da06e29 ffffffffffffffffffffffffffffffff 53824 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +439b6b2638392f1b0f723d28a23d5b1a 6318869f850d1695b0897111ec27b043 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist +439b6b2638392f1b0f723d28a23d5b1a 19394613896458b55a7cb73ebe96a3aa ffffffffffffffffffffffffffffffff 33152 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o +a283a4cd2521d423a1e0556e1d621369 5a6c32955c5f6ee8f99965bfdb353af0 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist +a283a4cd2521d423a1e0556e1d621369 cea9069e532073dec4f18e3317c0cb62 ffffffffffffffffffffffffffffffff 43620 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +439b6b267f829b330f723d28a23d3b18 2313008c5b9c03d401c9200b0824194f ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist +439b6b267f829b330f723d28a23d3b18 a1d1ad47944de4c7d717352d8ee41cd1 ffffffffffffffffffffffffffffffff 39272 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +a283a4cd629a600ba1e0556e1d62736b 72b23f7e4acf0d7cd43a861ccf0979cd ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +a283a4cd629a600ba1e0556e1d62736b 72726ca4dbc16482d490c705a0cca6eb ffffffffffffffffffffffffffffffff 56344 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +439b6b267f834ac00f723d28a23d7b26 00f8cb4f8c118a32b280cac4a7f5f912 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist +439b6b267f834ac00f723d28a23d7b26 698278bb1fb6b76e379a1715d197a6f3 ffffffffffffffffffffffffffffffff 37432 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +a283a4cd629bb1f8a1e0556e1d623355 d6f8f7bdc05588075959b7665d85a148 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +a283a4cd629bb1f8a1e0556e1d623355 dbf1bd1373cd904a7bc89413ba8f685e ffffffffffffffffffffffffffffffff 53480 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +439b6b267f8fcbd70f723d28a23d5afa 840cceea34958ae026e1a6a7422abd43 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist +439b6b267f8fcbd70f723d28a23d5afa 026eecc232d0a3cc30ec10b820229a83 ffffffffffffffffffffffffffffffff 17924 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o +a283a4cd629730efa1e0556e1d621289 1a45cf0583c2f6d0c5ef28b71b13311e ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +a283a4cd629730efa1e0556e1d621289 576e17676492de51f3b4ff0355c67670 ffffffffffffffffffffffffffffffff 20496 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +439b6b267ffe39210f723d28a23d10d4 6ab23e50abec661b85533f0373ed7b82 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist +439b6b267ffe39210f723d28a23d10d4 3537e45f298051f10c9cb0f8059bfb6d ffffffffffffffffffffffffffffffff 47608 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +a283a4cd62e6c219a1e0556e1d6258a7 01d3ff94adff5e01011ea1f1d6547ef8 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +a283a4cd62e6c219a1e0556e1d6258a7 af763682c5b7d0774fb8b7aa04f2a761 ffffffffffffffffffffffffffffffff 64748 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +439b6b267f8de72c0f723d28a23d5350 61f6f624efbd36964f75b1903bffc793 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist +439b6b267f8de72c0f723d28a23d5350 0fdb9d4912994edd9ad8f08d6c6bb16a ffffffffffffffffffffffffffffffff 19480 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +a283a4cd62951c14a1e0556e1d621b23 ebca9afd47eb3bb14921cd73b821c6ec ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +a283a4cd62951c14a1e0556e1d621b23 f005b2a61e638034ee424c772fbbb71e ffffffffffffffffffffffffffffffff 22616 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +439b6b267f87f8520f723d28a23d4008 42ed164e55c029a7b4c4b38a89ac7033 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist +439b6b267f87f8520f723d28a23d4008 0cc9e2965afd9cf9f9980f3664b38fd0 ffffffffffffffffffffffffffffffff 23220 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +a283a4cd629f036aa1e0556e1d62087b fb5259f4e02966ca8ec03cb13496b9c3 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +a283a4cd629f036aa1e0556e1d62087b c3c0c59f2f26e7e8ea47c8c2355245dd ffffffffffffffffffffffffffffffff 29120 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +439b6b267f8ae7200f723d28a23d693d 0c2a29e0435cbde181b7313d2138d245 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist +439b6b267f8ae7200f723d28a23d693d 3858879310d58b585d5eee50c003cf6d ffffffffffffffffffffffffffffffff 34248 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +a283a4cd62921c18a1e0556e1d62214e 7a8e1b1af2d39f0b365f53558db34df2 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +a283a4cd62921c18a1e0556e1d62214e 4778e2aa93a1b99465a467babc349ef4 ffffffffffffffffffffffffffffffff 41604 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +439b6b267777f3b70f723d28a23d733f 278ccff559d0d339b5427b3e97227c34 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist +439b6b267777f3b70f723d28a23d733f e753b39a97d70a07b0f80b34cf1d60ba ffffffffffffffffffffffffffffffff 24244 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +a283a4cd6a6f088fa1e0556e1d623b4c 17de75738a31ebffc30e0d9acec20b8c ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +a283a4cd6a6f088fa1e0556e1d623b4c cf3e366704e9a0b53da7724ae9747498 ffffffffffffffffffffffffffffffff 29960 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +439b6b26772a11d90f723d28a23d23bc 06eaa9bfed37b1fe189ac69681e6e0b7 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist +439b6b26772a11d90f723d28a23d23bc 411099d8b5db1a72b3ac71a9f314206d ffffffffffffffffffffffffffffffff 69624 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +a283a4cd6a32eae1a1e0556e1d626bcf 156b5116b4235d7104ef5d5aed6dc8d6 ffffffffffffffffffffffffffffffff 276 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +a283a4cd6a32eae1a1e0556e1d626bcf 2dab2056bb915b94e447ff6b6b6b7302 ffffffffffffffffffffffffffffffff 112588 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +c856b48c8c664baa5057d348c4c12159 93dc7b9384746b90a1a5a00a2d2c267a ffffffffffffffffffffffffffffffff 204 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework +00000000000000000000000000000000 490a066f32c11330b9dc183e5feaa0a5 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL +64c2c8162f7ac160810601d8bbef13d3 bef62aa282175619fd7c9f84c4926565 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers +00000000000000000000000000000000 b09b03c37c09d48ba9ff8655d655a691 ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources +00000000000000000000000000000000 64c2c8162f7ac160810601d8bbef13d3 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current +8564e689a9e9e989c135fe5a12c2d3dc 328c313a68ff27be285bf9eaa64e9603 ffffffffffffffffffffffffffffffff 2249976 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL +e5aaed3e11be80dfea6341afc36c2612 938b3fdf7cc1a7b83e998c2df5062f73 ffffffffffffffffffffffffffffffff 1033464 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +000000004837395c000000000000f9fd 439b6b2637bade770f723d28a23dadf6 ffffffffffffffffffffffffffffffff 10915724 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth +abb54a59b281404a224b2ea5a1f163d2 58f07e3176178ea437841d7d8559b96f ffffffffffffffffffffffffffffffff 1209176 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +000000004837395c000000000000f9fd a283a4cd2aa2254fa1e0556e1d62e585 ffffffffffffffffffffffffffffffff 9978580 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth +000000004f0a19cd0000000000000030 32d2cc5a41e00bf1c7b68229426811c5 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 4f9a17073f384a631a0b57331f5e11b3 ffffffffffffffffffffffffffffffff 1942 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +00000000000000000000000000000000 2766745cb0b35c12ee92c246c863d42c ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +00000000000000000000000000000000 434b9e8908293ad5d73477ca173077ba ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +00000000000000000000000000000000 135056b04bbacc11ca8a8649aeeb2877 ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +00000000000000000000000000000000 a689c4d14a4cf06c58da73cf86203088 ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +00000000000000000000000000000000 c7fea678f5ad55770a22fa3082f7e22c ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +00000000000000000000000000000000 92cbef9cd1417f6bd89044bcaa311e1f ffffffffffffffffffffffffffffffff 1698 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +00000000000000000000000000000000 53af4c31e414b382e748c352ca106010 ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +00000000000000000000000000000000 d69623b42586a0e7a77bdc6b3db9a25b ffffffffffffffffffffffffffffffff 4407 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +00000000000000000000000000000000 0eb2245fae48e46f7fc23da0fe3c1ddb ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +ffffffffffffffffffffffffffffffff 69d459ff0fce61e08b901a4581295b87 ffffffffffffffffffffffffffffffff 2218 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +00000000000000000000000000000000 d019504419571a24515d592e5f08f04b ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h +00000000000000000000000000000000 ae2101d928981cd4ebf971f2479d87cb ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h +00000000000000000000000000000000 84d197301f6feaa3a9bc5988c3ad37c3 ffffffffffffffffffffffffffffffff 4500 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +00000000000000000000000000000000 78d0797c1e982629b44e2630b827a16e ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 67c2f60da643366245a35771986df9fe ffffffffffffffffffffffffffffffff 5346 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 0a0b806b8f45060393d0573e7f081622 ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist +000000000776121c000000000000e579 41f49ec3b5bf2eaf6c43a4003fca1b9b ffffffffffffffffffffffffffffffff 10910168 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth +000000000776121c000000000000e579 cfc4e04ca720d02330be85b813cfcf1c ffffffffffffffffffffffffffffffff 9973036 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth +ffffffffffffffffffffffffffffffff ad07be3761cbe476b57ac6ed1e8255a9 ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework~.dep b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework~.dep new file mode 100644 index 00000000..cfa1c0eb --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.framework~.dep @@ -0,0 +1,88 @@ +6308d6751e7867dc73b4d04343f2be5d 58f07e3176178ea437841d7d8559b96f ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +41f49ec3b2c04d306c43a4003fcadd6c 03507d629f5e29f63af0ac7ba6dc00b6 ffffffffffffffffffffffffffffffff 42192 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +cfc4e04ca05fb3bc30be85b813cf09eb 31b776da13e8248a547c63a11275cfde ffffffffffffffffffffffffffffffff 42336 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +41f49ec3b2cc1f266c43a4003fcaeaa8 9606c190f572973e1850112a08da3ac1 ffffffffffffffffffffffffffffffff 34272 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +cfc4e04ca053e1aa30be85b813cf3e2f 6988d13cca45afb73fc7490cce2343e2 ffffffffffffffffffffffffffffffff 34592 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +41f49ec3b2c1c6906c43a4003fcae1c6 ecf94c388c9ca9e23c9d988666a40c1c ffffffffffffffffffffffffffffffff 39328 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +cfc4e04ca05e381c30be85b813cf3541 39637492f961863a0427cc0a0eb65d1c ffffffffffffffffffffffffffffffff 39696 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +41f49ec3b2c93e876c43a4003fcaf30e edf336df89ff7744506cddbd9592aac9 ffffffffffffffffffffffffffffffff 5184 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +cfc4e04ca056c00b30be85b813cf2789 fb1ea18eee145eadc5c662a4440d9002 ffffffffffffffffffffffffffffffff 4752 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +41f49ec3b2c93f126c43a4003fcab03e c8dfc9a120b7e843c07b7c00b7ea7692 ffffffffffffffffffffffffffffffff 49184 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +cfc4e04ca056c19e30be85b813cf64b9 4b222ae690ea81517cacc4256c91ad1f ffffffffffffffffffffffffffffffff 49888 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +41f49ec3b2c93ed16c43a4003fcaf0dd b2e82e54cfd1482362d0f12c64527d2f ffffffffffffffffffffffffffffffff 31104 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +cfc4e04ca056c05d30be85b813cf245a 134a551d0403213199e53d87b1c1cedf ffffffffffffffffffffffffffffffff 31472 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +41f49ec3b2cb3ce26c43a4003fca91f0 ef6db5c5b3ebc6a9b45b9090e2f97468 ffffffffffffffffffffffffffffffff 44352 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +cfc4e04ca054c26e30be85b813cf4577 ce9bfc808078fad5023b745a48fe80d4 ffffffffffffffffffffffffffffffff 47472 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +41f49ec3b2c4b8d26c43a4003fcadca9 cc92ff84816ced60c6684dc17ebd8217 ffffffffffffffffffffffffffffffff 51056 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +cfc4e04ca05b465e30be85b813cf082e f3168ca9e236427bdc0dcc8e47d7d822 ffffffffffffffffffffffffffffffff 51472 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +41f49ec3b2c8362e6c43a4003fcaf5bc b15a41b72af520c5cd69add5eda2fefd ffffffffffffffffffffffffffffffff 32128 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o +cfc4e04ca057c8a230be85b813cf213b efa1c2aaf4b3ad44d38b92be58c25643 ffffffffffffffffffffffffffffffff 32080 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +41f49ec3b2c547fe6c43a4003fcaab0b fae5aebfc2fab07080989804e77863de ffffffffffffffffffffffffffffffff 60496 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +cfc4e04ca05ab97230be85b813cf7f8c c2644e4f3db1faab7fd253d476ea8e3b ffffffffffffffffffffffffffffffff 62272 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +41f49ec3b2c93f1c6c43a4003fcaf9b8 f21c7d60b301067dedd50f66022803d8 ffffffffffffffffffffffffffffffff 33872 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +cfc4e04ca056c19030be85b813cf2d3f e6f6e288356bd1d16212e885b0fee75f ffffffffffffffffffffffffffffffff 33488 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +41f49ec3b2c005ab6c43a4003fcaef4e 03175b9fa2b06f05fa23fd7faa9b9218 ffffffffffffffffffffffffffffffff 39472 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +cfc4e04ca05ffb2730be85b813cf3bc9 5711492da652a4637f6c9781ecb4b386 ffffffffffffffffffffffffffffffff 39584 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +41f49ec3b2ce3f106c43a4003fcac3d5 a934077ed139414bb8d812ee84d117ac ffffffffffffffffffffffffffffffff 51968 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +cfc4e04ca051c19c30be85b813cf1752 a49b1d0858f0c3df4366fd814f84826d ffffffffffffffffffffffffffffffff 52336 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +41f49ec3ba403c816c43a4003fcad835 99512503d4688aac9ac694b8ea58d557 ffffffffffffffffffffffffffffffff 39568 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +cfc4e04ca8dfc20d30be85b813cf0cb2 e1cd3dcc8ad611b1343d9f5df8574cae ffffffffffffffffffffffffffffffff 40032 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +41f49ec3ba1092556c43a4003fca8ffa 1d9b45c10b50d3efe24967cf1ea784e3 ffffffffffffffffffffffffffffffff 99344 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +cfc4e04ca88f6cd930be85b813cf5b7d 8a1f4c954309b05d14534c3cd15f8dbf ffffffffffffffffffffffffffffffff 105824 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +1b2a5b29ba9d985868da2a46ff06f488 938b3fdf7cc1a7b83e998c2df5062f73 ffffffffffffffffffffffffffffffff 1015004 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +00000000077611b4000000000000e578 41f49ec3b5bf2eaf6c43a4003fca1b9b ffffffffffffffffffffffffffffffff 10910168 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth +00000000077611b4000000000000e578 cfc4e04ca720d02330be85b813cfcf1c ffffffffffffffffffffffffffffffff 9973036 /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth +000000004f0a19cd0000000000000030 32d2cc5a41e00bf1c7b68229426811c5 ffffffffffffffffffffffffffffffff 92 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +00000000000000000000000000000000 434b9e8908293ad5d73477ca173077ba ffffffffffffffffffffffffffffffff 1406 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +00000000000000000000000000000000 135056b04bbacc11ca8a8649aeeb2877 ffffffffffffffffffffffffffffffff 1523 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +00000000000000000000000000000000 2766745cb0b35c12ee92c246c863d42c ffffffffffffffffffffffffffffffff 1809 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +00000000000000000000000000000000 a689c4d14a4cf06c58da73cf86203088 ffffffffffffffffffffffffffffffff 2180 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +00000000000000000000000000000000 c7fea678f5ad55770a22fa3082f7e22c ffffffffffffffffffffffffffffffff 1434 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +00000000000000000000000000000000 4f9a17073f384a631a0b57331f5e11b3 ffffffffffffffffffffffffffffffff 1601 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +00000000000000000000000000000000 53af4c31e414b382e748c352ca106010 ffffffffffffffffffffffffffffffff 1755 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +00000000000000000000000000000000 0eb2245fae48e46f7fc23da0fe3c1ddb ffffffffffffffffffffffffffffffff 4161 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +00000000000000000000000000000000 d69623b42586a0e7a77bdc6b3db9a25b ffffffffffffffffffffffffffffffff 4174 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +00000000000000000000000000000000 69d459ff0fce61e08b901a4581295b87 ffffffffffffffffffffffffffffffff 2149 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +00000000000000000000000000000000 ae2101d928981cd4ebf971f2479d87cb ffffffffffffffffffffffffffffffff 1948 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h +00000000000000000000000000000000 84d197301f6feaa3a9bc5988c3ad37c3 ffffffffffffffffffffffffffffffff 3024 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +00000000000000000000000000000000 78d0797c1e982629b44e2630b827a16e ffffffffffffffffffffffffffffffff 2349 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +00000000000000000000000000000000 d019504419571a24515d592e5f08f04b ffffffffffffffffffffffffffffffff 1889 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h +00000000000000000000000000000000 67c2f60da643366245a35771986df9fe ffffffffffffffffffffffffffffffff 5344 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +00000000000000000000000000000000 0a0b806b8f45060393d0573e7f081622 ffffffffffffffffffffffffffffffff 1144 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist +64c2c8162f7ac160810601d8bbef13d3 bef62aa282175619fd7c9f84c4926565 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers +00000000000000000000000000000000 64c2c8162f7ac160810601d8bbef13d3 ffffffffffffffffffffffffffffffff 1 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current +00000000000000000000000000000000 490a066f32c11330b9dc183e5feaa0a5 ffffffffffffffffffffffffffffffff 24 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL +00000000000000000000000000000000 b09b03c37c09d48ba9ff8655d655a691 ffffffffffffffffffffffffffffffff 26 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist +ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.hmap b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.hmap Binary files differnew file mode 100644 index 00000000..406d3bca --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL.hmap diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist new file mode 100644 index 00000000..c3f62e32 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <array> + </array> + <key>diagnostics</key> + <array> + </array> +</dict> +</plist>
\ No newline at end of file diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state.dat new file mode 100644 index 00000000..bd54a9b3 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state.dat @@ -0,0 +1,1690 @@ +TSPMySQL.framework +v7 +r0 +t351386739.899509 +cCheck dependencies +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current A +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources Versions/Current/Resources +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers Versions/Current/Headers +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 +cCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" +cAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" +cAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +cTouch /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework + +N/Developer/SDKs/MacOSX10.5.sdk +c000000004C238B9B00000000000000EE +t1277397915 +s238 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h +c0000000040C4AA6800000000000001E5 +t1086630504 +s485 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/Headers/SCNetworkReachability.h +c0000000047BAC506000000000000235B +t1203422470 +s9051 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration +c000000004B760CDC00000000000371FC +t1266027740 +s225788 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h +c0000000047E8839E0000000000000746 +t1206420382 +s1862 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h +c0000000047BA9932000000000000380F +t1203411250 +s14351 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h +c0000000047BA9930000000000000055B +t1203411248 +s1371 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h +c0000000047E883D2000000000000290F +t1206420434 +s10511 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/libz.dylib +c000000004B760D050000000000006EE8 +t1266027781 +s28392 + +N/System/Library/Frameworks/Cocoa.framework/Cocoa +c000000004E2DE5120000000000006560 +t1311630610 +s25952 + +N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings +c000000004F0A19CD0000000000000030 +t1326062029 +s48 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h +c000000004F130858000000000000070C +t1326647384 +s1804 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h +c000000004F13085800000000000005D0 +t1326647384 +s1488 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h +c000000004F13085800000000000083EB +t1326647384 +s33771 +i<standards.h> +i<sys/types.h> +i<winsock2.h> +i"mysql_version.h" +i"mysql_com.h" +i"mysql_time.h" +i"my_list.h" +i"typelib.h" +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h +c000000004F130858000000000000503F +t1326647384 +s20543 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h +c000000004F1308580000000000000831 +t1326647384 +s2097 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h +c000000004F130858000000000000032B +t1326647384 +s811 +i<custom_conf.h> + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h +c000000004F13085800000000000005DD +t1326647384 +s1501 +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a +c000000004F13085B0000000000445164 +t1326647387 +s4477284 + +N/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h +c000000004F3FDF050000000000000EFA +t1329585925 +s3834 +i"Ping & KeepAlive.h" +i"Locking.h" +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/SPMySQL.h +c000000004F40545B00000000000008AA +t1329615963 +s2218 +i"SPMySQLConstants.h" +i"SPMySQLStringAdditions.h" +i"SPMySQLConnectionDelegate.h" +i"SPMySQLConnectionProxy.h" +i"SPMySQLConnection.h" +i"Delegate & Proxy.h" +i"Databases & Tables.h" +i"Max Packet Size.h" +i"Querying & Preparation.h" +i"Encoding.h" +i"Server Info.h" +i"SPMySQLResult.h" +i"SPMySQLStreamingResult.h" +i"SPMySQLFastStreamingResult.h" +i"Field Definitions.h" +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h +c000000004F307BEF00000000000009A8 +t1328577519 +s2472 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +c000000004F307BE80000000000000EF3 +t1328577512 +s3827 +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h +c000000004F3800F70000000000000711 +t1329070327 +s1809 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +c000000004F3D0465000000000000245E +t1329398885 +s9310 +i"Databases & Tables.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h +c000000004F3452E5000000000000057E +t1328829157 +s1406 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +c000000004F3CFAE100000000000011ED +t1329396449 +s4589 +i"Delegate & Proxy.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h +c000000004F340C6A000000000000079C +t1328811114 +s1948 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +c000000004F330C610000000000003AAA +t1328745569 +s15018 +i"Encoding.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h +c000000004F307BFB00000000000005E6 +t1328577531 +s1510 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +c000000004F3CFAF70000000000000E61 +t1329396471 +s3681 +i"Locking.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h +c000000004F398B4100000000000005F3 +t1329171265 +s1523 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +c000000004F3CFAF30000000000001A0E +t1329396467 +s6670 +i"Max Packet Size.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +c000000004F3172E100000000000007C2 +t1328640737 +s1986 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +c000000004F4184B40000000000001D1F +t1329693876 +s7455 +i"Ping & KeepAlive.h" +i"Locking.h" +i<pthread.h> + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h +c000000004F40542D0000000000001194 +t1329615917 +s4500 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +c000000004F405438000000000000554B +t1329615928 +s21835 +i"SPMySQLConnection.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h +c000000004F3848660000000000000761 +t1329088614 +s1889 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +c000000004F3CFAEF0000000000001614 +t1329396463 +s5652 +i"Server Info.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h +c000000004F3D27C200000000000014E2 +t1329407938 +s5346 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +c000000004F4184A80000000000006ED3 +t1329693864 +s28371 +i"SPMySQL Private APIs.h" +i<mach/mach_time.h> +i<pthread.h> +i<SystemConfiguration/SCNetworkReachability.h> + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h +c000000004F36BCAB0000000000001041 +t1328987307 +s4161 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h +c000000004F327BDC0000000000000884 +t1328708572 +s2180 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h +c000000004F39B228000000000000092D +t1329181224 +s2349 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h +c000000004F417F8900000000000006A2 +t1329692553 +s1698 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +c000000004F41837B00000000000034CA +t1329693563 +s13514 +i"SPMySQLFastStreamingResult.h" +i"SPMySQL Private APIs.h" +i<pthread.h> + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch +c000000004F307C5D00000000000000E7 +t1328577629 +s231 +i<Cocoa/Cocoa.h> +i"mysql.h" +i"SPMySQL.h" +i"SPMySQLUtilities.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h +c000000004F32785D00000000000006DB +t1328707677 +s1755 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +c000000004F3D044500000000000069C8 +t1329398853 +s27080 +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h +c000000004F307BB8000000000000059A +t1328577464 +s1434 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +c000000004F307BB10000000000004B47 +t1328577457 +s19271 +i"Field Definitions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h +c000000004F415CF40000000000001137 +t1329683700 +s4407 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +c000000004F415CEF0000000000003B6C +t1329683695 +s15212 +i"SPMySQLResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h +c000000004F401EC60000000000000796 +t1329602246 +s1942 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +c000000004F415D940000000000001E81 +t1329683860 +s7809 +i"SPMySQLStreamingResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.h +c000000004F32FAD700000000000005CE +t1328741079 +s1486 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +c000000004F32FB4B0000000000000823 +t1328741195 +s2083 +i"SPMySQLStringAdditions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLUtilities.h +c000000004F307D2800000000000006F7 +t1328577832 +s1783 +i<mach/mach_time.h> + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework +t1329693917 +s204 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +t1329398513 +s1809 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +t1329398513 +s1406 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h +t1329398513 +s1948 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +t1329398513 +s1434 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +t1329398513 +s1523 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +t1329685305 +s4500 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +t1329685305 +s2218 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +t1329613179 +s5346 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +t1329398513 +s4161 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +t1329398513 +s2180 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +t1329398513 +s2349 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +t1329693268 +s1698 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +t1329398513 +s1755 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +t1329685305 +s4407 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +t1329613179 +s1942 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h +t1329398513 +s1889 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1329398513 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist +t1329398513 +s1144 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL +t1329693917 +s2249976 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +t1329693271 +s19480 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +t1329693271 +s26136 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +t1329693271 +s20004 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +t1329693270 +s34248 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +t1329693271 +s37748 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o +t1329693271 +s17924 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +t1329693271 +s23584 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +t1329693917 +s24244 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +t1329693271 +s47608 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +t1329693917 +s1033464 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList +c000000004F40497B0000000000000873 +t1329613179 +s2163 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +t1329693917 +s69624 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o +t1329693917 +s33152 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +t1329693271 +s39272 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +t1329693271 +s37432 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +t1329693271 +s27688 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +t1329693271 +s4668 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +t1329693270 +s23220 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +t1329693270 +s22616 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +t1329693270 +s33948 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +t1329693270 +s24696 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +t1329693270 +s41604 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +t1329693270 +s53824 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +t1329693270 +s20496 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +t1329693270 +s30528 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +t1329693917 +s29960 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +t1329693270 +s64748 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +t1329693917 +s1209176 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList +c000000004F40497B0000000000000893 +t1329613179 +s2195 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +t1329693917 +s112588 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +t1329693917 +s43620 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +t1329693270 +s56344 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +t1329693270 +s53480 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +t1329693270 +s35972 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +t1329693270 +s6260 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +t1329693269 +s29120 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist +t1329693928 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist +t1329693928 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist +t1329693928 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist +t1329693928 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist +t1329693939 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist +t1329693928 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist +t1329693927 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +t1329693925 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +t1329693925 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +t1329693925 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +t1329693925 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +t1329693925 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +t1329693925 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLFastStreamingResult.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +t1329693939 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +t1329693926 +s276 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +t1329693925 +s276 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth +t1329399806 +s10910168 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth +t1329693269 +s9978580 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth +t1329693269 +s10915724 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth +t1329399805 +s9973036 + +NResources/Info.plist +c000000004F0A20EC0000000000000357 +t1326063852 +s855 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" +s351386726.931095 +e351386727.138087 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +lSLF07#2@91"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386726#351386727#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4456279696#1836" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" +s351386728.125354 +e351386728.328516 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +lSLF07#2@99"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386728#351386728#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4456279696#1854" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" +s351386728.009400 +e351386728.206574 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386728#351386728#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4456279696#1850" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" +s351386726.732878 +e351386726.930918 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +lSLF07#2@89"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386726#351386726#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4456279696#1832" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" +s351386727.098607 +e351386727.324678 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +lSLF07#2@88"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386727#351386727#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4456279696#1830" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" +s351386727.826828 +e351386728.009261 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +lSLF07#2@96"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386727#351386728#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4456279696#1848" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" +s351386726.677071 +e351386726.890868 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +lSLF07#2@97"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386726#351386726#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4456279696#1850" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" +s351386727.095184 +e351386727.316856 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +lSLF07#2@103"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386727#351386727#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4456279696#1862" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" +s351386726.891006 +e351386727.095043 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +lSLF07#2@92"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386726#351386727#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4456279696#1840" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist"
0# + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" +s351386727.441710 +e351386727.644236 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +lSLF07#2@94"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386727#351386727#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4456279696#1848" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist"
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +s351386726.540458 +e351386727.098463 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +lSLF07#2@69"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386726#351386727#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4456279696#1819" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +s351386727.325094 +e351386728.125033 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +lSLF07#2@78"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386727#351386728#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4456279696#1837" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLFastStreamingResult.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +s351386727.317021 +e351386739.899284 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +lSLF07#2@71"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386727#351386739#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4456279696#1823" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +s351386727.138427 +e351386727.441566 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +lSLF07#2@65"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386727#351386727#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4456279696#1811" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +s351386728.206708 +e351386728.399588 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386728#351386728#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4456279696#1829" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist
0# + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +s351386727.644367 +e351386727.826673 +r1 +xAnalyze +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +lSLF07#2@74"Analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386727#351386727#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4456279696#1829" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch --analyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist
0# + +CCheck dependencies +r0 +lSLF07#2@18"Check dependencies351386724#351386725#0(0"0(0#1#0"4456281408#0"0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.565348 +e351386071.886597 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386071#351386071#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4551671440#1836" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.478164 +e351386071.590044 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386071#351386071#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4551671440#1832" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.379642 +e351386071.590384 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386071#351386071#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4551671440#1830" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.461965 +e351386071.565181 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386071#351386071#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4551671440#1830" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386717.310522 +e351386717.459785 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386717#351386717#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4554342032#1832" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.984552 +e351386071.267628 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386070#351386071#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4551671440#1844" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.872194 +e351386070.984379 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386070#351386070#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4551671440#1822" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.555052 +e351386070.698435 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351386070#351386070#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4551671440#1842" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.506238 +e351386070.611349 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351386070#351386070#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4551671440#1838" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.319561 +e351386070.557323 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351386070#351386070#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4551671440#1836" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.435380 +e351386070.554868 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351386070#351386070#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4551671440#1836" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386717.012572 +e351386717.310364 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351386717#351386717#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4554342032#1838" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386069.976557 +e351386070.262717 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351386069#351386070#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4551671440#1850" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386069.859589 +e351386069.966150 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351386069#351386069#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4551671440#1828" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o"
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.923556 +e351386071.031146 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386070#351386071#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4551671440#1818" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.698596 +e351386070.902717 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386070#351386070#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4551671440#1814" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.031939 +e351386071.108496 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386071#351386071#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4551671440#1812" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386717.018001 +e351386717.514378 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386717#351386717#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4554342032#1801" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386717.361867 +e351386717.525838 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@78"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386717#351386717#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4554342032#1819" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLFastStreamingResult.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.205736 +e351386071.887209 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386071#351386071#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4551671440#1805" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.108629 +e351386071.423703 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386071#351386071#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4551671440#1793" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.590640 +e351386071.886979 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386071#351386071#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4551671440#1811" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386071.423866 +e351386071.477982 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386071#351386071#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4551671440#1811" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386069.966522 +e351386070.087669 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351386069#351386070#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4551671440#1824" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386069.858167 +e351386070.028025 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351386069#351386070#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4551671440#1820" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.031108 +e351386070.115713 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351386070#351386070#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4551671440#1818" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386717.010711 +e351386717.532164 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351386717#351386717#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4554342032#1807" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386717.015019 +e351386717.356926 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@78"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m351386717#351386717#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m4554342032#1825" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLFastStreamingResult.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.115858 +e351386070.798434 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351386070#351386070#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4551671440#1811" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.088098 +e351386070.319385 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351386070#351386070#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4551671440#1799" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.557464 +e351386070.688127 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351386070#351386070#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4551671440#1817" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386070.378888 +e351386070.435210 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351386070#351386070#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4551671440#1817" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o
0# + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s351091313.342511 +e351091313.395429 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4566089360#367" cd /Users/rowan/code/SPMySQLFramework
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj
0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +s351091313.320298 +e351091313.333153 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +xSource/SPMySQLConnection Categories/Databases & Tables.h +lSLF07#2@61"Copy Source/SPMySQLConnection Categories/Databases & Tables.h351091313#351091313#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h4566089360#405" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +s351091313.319420 +e351091313.342371 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +xSource/SPMySQLConnection Categories/Delegate & Proxy.h +lSLF07#2@59"Copy Source/SPMySQLConnection Categories/Delegate & Proxy.h351091313#351091313#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h4566089360#403" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +s351091313.310565 +e351091313.325376 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +xSource/SPMySQLResult Categories/Field Definitions.h +lSLF07#2@56"Copy Source/SPMySQLResult Categories/Field Definitions.h351091313#351091313#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h4566089360#400" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +s351091313.318441 +e351091313.333420 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +xSource/SPMySQLConnection Categories/Max Packet Size.h +lSLF07#2@58"Copy Source/SPMySQLConnection Categories/Max Packet Size.h351091313#351091313#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h4566089360#402" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +s351378105.959192 +e351378105.972769 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +xSource/SPMySQLConnection Categories/Querying & Preparation.h +lSLF07#2@65"Copy Source/SPMySQLConnection Categories/Querying & Preparation.h351378105#351378105#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h4544564880#409" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +s351091313.289711 +e351091313.310342 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h +xSource/SPMySQLConnection Categories/Server Info.h +lSLF07#2@54"Copy Source/SPMySQLConnection Categories/Server Info.h351091313#351091313#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h4566089360#398" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +s351091313.288896 +e351091313.317405 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h +xSource/SPMySQLConnection Categories/Encoding.h +lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Encoding.h351091313#351091313#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h4566089360#395" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h +s351378105.960224 +e351378105.973137 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +xSPMySQL.h +lSLF07#2@14"Copy SPMySQL.h351378105#351378105#0(0"0(0#0#44"/Users/rowan/code/SPMySQLFramework/SPMySQL.h4544564880#356" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/SPMySQL.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s351305979.657134 +e351305979.678654 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h351305979#351305979#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4456279696#373" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +s351091313.291285 +e351091313.321567 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +xSource/SPMySQLConnectionDelegate.h +lSLF07#2@39"Copy Source/SPMySQLConnectionDelegate.h351091313#351091313#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h4566089360#381" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +s351091313.313233 +e351091313.331649 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +xSource/SPMySQLConnectionProxy.h +lSLF07#2@36"Copy Source/SPMySQLConnectionProxy.h351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h4566089360#378" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s351091313.287583 +e351091313.316981 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h351091313#351091313#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4566089360#372" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h Source/SPMySQLFastStreamingResult.h +s351386068.547227 +e351386068.558500 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLFastStreamingResult.h +xSource/SPMySQLFastStreamingResult.h +lSLF07#2@40"Copy Source/SPMySQLFastStreamingResult.h351386068#351386068#0(0"0(0#0#70"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h4551671440#382" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFastStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +s351091313.292835 +e351091313.321741 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +xSource/SPMySQLGeometryData.h +lSLF07#2@33"Copy Source/SPMySQLGeometryData.h351091313#351091313#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h4566089360#375" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +s351378105.961194 +e351378105.973440 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +xSource/SPMySQLResult.h +lSLF07#2@27"Copy Source/SPMySQLResult.h351378105#351378105#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h4544564880#369" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +s351305979.661983 +e351305979.680356 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +xSource/SPMySQLStreamingResult.h +lSLF07#2@36"Copy Source/SPMySQLStreamingResult.h351305979#351305979#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h4456279696#378" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" +s351386717.931058 +e351386717.962365 +r1 +xCreateUniversalBinary +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL +xnormal +xx86_64 i386 +lSLF07#2@93"CreateUniversalBinary build/Release/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386"351386717#351386717#0(0"0(0#0#46"/Users/rowan/code/SPMySQLFramework/x86_64 i3864554342032#412" cd /Users/rowan/code/SPMySQLFramework
/usr/bin/lipo -create /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL -output /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL
0# + +CGenerateDSYMFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL +r0 + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 +s351386717.526013 +e351386717.881233 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +xnormal +xi386 +lSLF07#2@128"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL351386717#351386717#0(0"0(0#0#0"4554342032#863" cd /Users/rowan/code/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Release "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Release -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL
0# + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 +s351386717.532291 +e351386717.930955 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +xnormal +xx86_64 +lSLF07#2@130"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL351386717#351386717#0(0"0(0#0#0"4554342032#869" cd /Users/rowan/code/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Release "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Release -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL
0# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s351091313.283593 +e351091313.286836 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist351091313#351091313#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4566089472#232" cd /Users/rowan/code/SPMySQLFramework
builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351092604.819745 +e351092606.154963 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +oclang: warning: argument unused during compilation: '-flto' +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351092604#351092606#0(60"clang: warning: argument unused during compilation: '-flto'
0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4634766992#1681" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386068.558766 +e351386069.716248 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351386068#351386069#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4551671440#1679" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-auxswahqcpdpplbhprktpczirxee/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351386068.559718 +e351386069.854468 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351386068#351386069#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4551671440#1675" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-cofotckhtpskmbbitaunrurqfhjt/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351092604.818783 +e351092605.903013 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +oclang: warning: argument unused during compilation: '-flto' +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351092604#351092605#0(60"clang: warning: argument unused during compilation: '-flto'
0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4634766992#1685" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers Versions/Current/Headers +s351091313.281056 +e351091313.283506 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers +xVersions/Current/Headers +lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers351091313#351091313#0(0"0(0#0#0"4566089360#158" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources Versions/Current/Resources +s351091313.276568 +e351091313.280820 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources +xVersions/Current/Resources +lSLF07#2@84"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources351091313#351091313#0(0"0(0#0#0"4566089360#162" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +s351091313.277533 +e351091313.281810 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL +xVersions/Current/SPMySQL +lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL351091313#351091313#0(0"0(0#0#0"4566089360#158" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/SPMySQL /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current A +s351091313.274448 +e351091313.280642 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current +xA +lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current351091313#351091313#0(0"0(0#0#0"4566089360#144" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current
0# + +CTouch /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework +s351386717.962479 +e351386717.967053 +r1 +xTouch +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework +lSLF07#2@72"Touch /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework351386717#351386717#0(0"0(0#0#0"4554342032#131" cd /Users/rowan/code/SPMySQLFramework
/usr/bin/touch -c /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework
0# + diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state~.dat b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state~.dat new file mode 100644 index 00000000..95153397 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/build-state~.dat @@ -0,0 +1,1498 @@ +TSPMySQL.framework +v7 +r0 +t351091318.239430 +cCheck dependencies +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current A +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources Versions/Current/Resources +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +cSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers Versions/Current/Headers +cProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +cCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +cCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +cCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 + +N/Developer/SDKs/MacOSX10.5.sdk +c000000004C238B9B00000000000000EE +t1277397915 +s238 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h +c0000000040C4AA6800000000000001E5 +t1086630504 +s485 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/Headers/SCNetworkReachability.h +c0000000047BAC506000000000000235B +t1203422470 +s9051 + +N/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration +c000000004B760CDC00000000000371FC +t1266027740 +s225788 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/mach/mach_time.h +c0000000047E8839E0000000000000746 +t1206420382 +s1862 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h +c0000000047BA9932000000000000380F +t1203411250 +s14351 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/standards.h +c0000000047BA9930000000000000055B +t1203411248 +s1371 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h +c0000000047E883D2000000000000290F +t1206420434 +s10511 + +N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/libz.dylib +c000000004B760D050000000000006EE8 +t1266027781 +s28392 + +N/System/Library/Frameworks/Cocoa.framework/Cocoa +c000000004E2DE5120000000000006560 +t1311630610 +s25952 + +N/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings +c000000004F0A19CD0000000000000030 +t1326062029 +s48 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_alloc.h +c000000004F130858000000000000070C +t1326647384 +s1804 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/my_list.h +c000000004F13085800000000000005D0 +t1326647384 +s1488 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql.h +c000000004F13085800000000000083EB +t1326647384 +s33771 +i<standards.h> +i<sys/types.h> +i<winsock2.h> +i"mysql_version.h" +i"mysql_com.h" +i"mysql_time.h" +i"my_list.h" +i"typelib.h" +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_com.h +c000000004F130858000000000000503F +t1326647384 +s20543 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_time.h +c000000004F1308580000000000000831 +t1326647384 +s2097 + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/mysql_version.h +c000000004F130858000000000000032B +t1326647384 +s811 +i<custom_conf.h> + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/include/typelib.h +c000000004F13085800000000000005DD +t1326647384 +s1501 +i"my_alloc.h" + +N/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib/libmysqlclient.a +c000000004F13085B0000000000445164 +t1326647387 +s4477284 + +N/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h +c000000004F3CFACC0000000000000B54 +t1329396428 +s2900 +i"Ping & KeepAlive.h" +i"Locking.h" +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/SPMySQL.h +c000000004F3D02A50000000000000865 +t1329398437 +s2149 +i"SPMySQLConstants.h" +i"SPMySQLStringAdditions.h" +i"SPMySQLConnectionDelegate.h" +i"SPMySQLConnectionProxy.h" +i"SPMySQLConnection.h" +i"Delegate & Proxy.h" +i"Databases & Tables.h" +i"Max Packet Size.h" +i"Querying & Preparation.h" +i"Encoding.h" +i"Server Info.h" +i"SPMySQLResult.h" +i"SPMySQLStreamingResult.h" +i"Field Definitions.h" +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h +c000000004F307BEF00000000000009A8 +t1328577519 +s2472 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +c000000004F307BE80000000000000EF3 +t1328577512 +s3827 +i"Conversion.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h +c000000004F3800F70000000000000711 +t1329070327 +s1809 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +c000000004F3CFAE50000000000002446 +t1329396453 +s9286 +i"Databases & Tables.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h +c000000004F3452E5000000000000057E +t1328829157 +s1406 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +c000000004F3CFAE100000000000011ED +t1329396449 +s4589 +i"Delegate & Proxy.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h +c000000004F340C6A000000000000079C +t1328811114 +s1948 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +c000000004F330C610000000000003AAA +t1328745569 +s15018 +i"Encoding.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.h +c000000004F307BFB00000000000005E6 +t1328577531 +s1510 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +c000000004F3CFAF70000000000000E61 +t1329396471 +s3681 +i"Locking.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h +c000000004F398B4100000000000005F3 +t1329171265 +s1523 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +c000000004F3CFAF30000000000001A0E +t1329396467 +s6670 +i"Max Packet Size.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.h +c000000004F3172E100000000000007C2 +t1328640737 +s1986 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +c000000004F3293B20000000000001CFD +t1328714674 +s7421 +i"Ping & KeepAlive.h" +i"Locking.h" +i<pthread.h> + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h +c000000004F3D01090000000000000BD0 +t1329398025 +s3024 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +c000000004F3D02C600000000000041D0 +t1329398470 +s16848 +i"SPMySQLConnection.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h +c000000004F3848660000000000000761 +t1329088614 +s1889 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +c000000004F3CFAEF0000000000001614 +t1329396463 +s5652 +i"Server Info.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h +c000000004F3CF21A00000000000014E0 +t1329394202 +s5344 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +c000000004F3CFADD0000000000006DD3 +t1329396445 +s28115 +i"SPMySQL Private APIs.h" +i<mach/mach_time.h> +i<pthread.h> +i<SystemConfiguration/SCNetworkReachability.h> + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h +c000000004F36BCAB0000000000001041 +t1328987307 +s4161 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h +c000000004F327BDC0000000000000884 +t1328708572 +s2180 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h +c000000004F39B228000000000000092D +t1329181224 +s2349 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch +c000000004F307C5D00000000000000E7 +t1328577629 +s231 +i<Cocoa/Cocoa.h> +i"mysql.h" +i"SPMySQL.h" +i"SPMySQLUtilities.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h +c000000004F32785D00000000000006DB +t1328707677 +s1755 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +c000000004F307BA400000000000069C8 +t1328577444 +s27080 +i"SPMySQLGeometryData.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h +c000000004F307BB8000000000000059A +t1328577464 +s1434 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +c000000004F307BB10000000000004B47 +t1328577457 +s19271 +i"Field Definitions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h +c000000004F3CF545000000000000104E +t1329395013 +s4174 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +c000000004F3CFAB500000000000032DC +t1329396405 +s13020 +i"SPMySQLResult.h" +i"SPMySQL Private APIs.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h +c000000004F3C36140000000000000641 +t1329346068 +s1601 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +c000000004F3C37DE000000000000087F +t1329346526 +s2175 +i"SPMySQLStreamingResult.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.h +c000000004F32FAD700000000000005CE +t1328741079 +s1486 + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +c000000004F32FB4B0000000000000823 +t1328741195 +s2083 +i"SPMySQLStringAdditions.h" + +N/Users/rowan/code/SPMySQLFramework/Source/SPMySQLUtilities.h +c000000004F307D2800000000000006F7 +t1328577832 +s1783 +i<mach/mach_time.h> + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources +t3 +s26 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL +t3 +s24 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +t1329398513 +s1809 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +t1329398513 +s1406 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h +t1329398513 +s1948 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +t1329398513 +s1434 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +t1329398513 +s1523 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +t1329398513 +s3024 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +t1329398513 +s2149 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +t1329398513 +s5344 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +t1329398513 +s4161 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +t1329398513 +s2180 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +t1329398513 +s2349 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +t1329398513 +s1755 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +t1329398513 +s4174 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +t1329398513 +s1601 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h +t1329398513 +s1889 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +t1329398513 +s92 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist +t1329398513 +s1144 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current +t3 +s1 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +t1329398515 +s33872 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +t1329398515 +s42192 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +t1329398515 +s34272 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +t1329398515 +s51968 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +t1329398515 +s49184 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o +t1329398515 +s32128 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +t1329398515 +s39328 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +t1329398515 +s39568 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +t1329398515 +s60496 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +t1329398517 +s1015004 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList +c000000004F3D02F100000000000007E2 +t1329398513 +s2018 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +t1329398515 +s99344 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +t1329398515 +s44352 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +t1329398515 +s51056 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +t1329398515 +s31104 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +t1329398515 +s5184 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +t1329398515 +s39472 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +t1329398515 +s33488 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +t1329398515 +s42336 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +t1329398515 +s34592 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +t1329398514 +s52336 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +t1329398515 +s49888 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +t1329398515 +s32080 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +t1329398515 +s39696 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +t1329398514 +s40032 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +t1329398515 +s62272 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList +c000000004F3D02F10000000000000800 +t1329398513 +s2048 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +t1329398515 +s105824 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +t1329398515 +s47472 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +t1329398515 +s51472 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +t1329398515 +s31472 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +t1329398515 +s4752 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +t1329398514 +s39584 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Conversion.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Databases & Tables.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Delegate & Proxy.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Encoding.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Field Definitions.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Locking.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Max Packet Size.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Ping & KeepAlive.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Querying & Preparation.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLConnection.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLGeometryData.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLResult.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStreamingResult.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/SPMySQLStringAdditions.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/i386/Server Info.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Conversion.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Databases & Tables.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Delegate & Proxy.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Encoding.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Field Definitions.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Locking.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Max Packet Size.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Ping & KeepAlive.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Querying & Preparation.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLConnection.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLGeometryData.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLResult.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStreamingResult.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/SPMySQLStringAdditions.plist +t2 +s0 + +N/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/StaticAnalyzer/normal/x86_64/Server Info.plist +t2 +s0 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth +t1329398514 +s10910168 + +N/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth +t1329398514 +s9973036 + +NResources/Info.plist +c000000004F0A20EC0000000000000357 +t1326063852 +s855 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" +r0 + +CAnalyze "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" +r0 + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +r0 + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +r0 + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +r0 + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +r0 + +CAnalyze /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +r0 + +CCheck dependencies +r0 +lSLF07#2@18"Check dependencies351091313#351091313#0(0"0(0#1#0"4566091072#0"0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.877088 +e351091315.939689 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m:129:52:{129:52-129:81}{129:18-129:19}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] +o databaseList = [NSMutableArray arrayWithCapacity:[databaseResult numberOfRows]]; +o ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m:219:49:{219:49-219:75}{219:15-219:16}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] +o tableList = [NSMutableArray arrayWithCapacity:[tableResult numberOfRows]]; +o ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~ +o2 warnings generated. +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351091315#351091316#0(926"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m:129:52:{129:52-129:81}{129:18-129:19}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32]
databaseList = [NSMutableArray arrayWithCapacity:[databaseResult numberOfRows]];
~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m:219:49:{219:49-219:75}{219:15-219:16}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32]
tableList = [NSMutableArray arrayWithCapacity:[tableResult numberOfRows]];
~ ^~~~~~~~~~~~~~~~~~~~~~~~~~
2 warnings generated.
2(22@102"Implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int')351091315#0#264#0(6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#129#52#0#0#0"2(6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#129#52#129#81#6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#129#18#129#19#22@102"Implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int')351091315#458#264#0(6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#219#49#0#0#0"2(6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#219#49#219#75#6@91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351089253#219#15#219#16#0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4566089360#1842" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Databases & Tables.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.845386 +e351091315.898295 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351091315#351091316#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4566089360#1838" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Delegate & Proxy.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.743682 +e351091315.845212 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351091315#351091315#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4566089360#1836" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Field Definitions.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.802289 +e351091315.876908 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351091315#351091315#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4566089360#1836" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Max Packet Size.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.420747 +e351091315.517376 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351091315#351091315#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4566089360#1838" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Ping & KeepAlive.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.595894 +e351091315.715091 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:115:88:{115:88-115:107}: warning: incompatible pointer types passing 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *') +o const char *cQueryString = _cStringForStringWithEncoding(theQueryString, theEncoding, &cQueryStringLength); +o ^~~~~~~~~~~~~~~~~~~ +oIn file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35: +oIn file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40: +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h:49:117: note: passing argument to parameter 'cStringLengthPointer' here +o static inline const char* _cStringForStringWithEncoding(NSString* aString, NSStringEncoding anEncoding, NSUInteger *cStringLengthPointer) +o ^ +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:153:78:{153:78-153:106}{153:34-153:35}: warning: implicit conversion changes signedness: 'unsigned int' to 'NSInteger' (aka 'int') [-Wconversion] +o if (lastQueryWasCancelled && ![SPMySQLConnection isErrorIDConnectionError:mysql_errno(mySQLConnection)]) { +o ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:343:129:{343:129-343:152}: warning: incompatible pointer types sending 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *') +o const char *killQueryCString = [SPMySQLConnection _cStringForString:killQuery usingEncoding:aStringEncoding returningLengthAs:&killQueryCStringLength]; +o ^~~~~~~~~~~~~~~~~~~~~~~ +oIn file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35: +oIn file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40: +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h:38:130: note: passing argument to parameter 'cStringLengthPointer' here +o + (const char *)_cStringForString:(NSString *)aString usingEncoding:(NSStringEncoding)anEncoding returningLengthAs:(NSUInteger *)cStringLengthPointer; +o ^ +o3 warnings generated. +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091315#351091315#0(2845"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:115:88:{115:88-115:107}: warning: incompatible pointer types passing 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *')
const char *cQueryString = _cStringForStringWithEncoding(theQueryString, theEncoding, &cQueryStringLength);
^~~~~~~~~~~~~~~~~~~
In file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35:
In file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40:
/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h:49:117: note: passing argument to parameter 'cStringLengthPointer' here
static inline const char* _cStringForStringWithEncoding(NSString* aString, NSStringEncoding anEncoding, NSUInteger *cStringLengthPointer)
^
/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:153:78:{153:78-153:106}{153:34-153:35}: warning: implicit conversion changes signedness: 'unsigned int' to 'NSInteger' (aka 'int') [-Wconversion]
if (lastQueryWasCancelled && ![SPMySQLConnection isErrorIDConnectionError:mysql_errno(mySQLConnection)]) {
~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:343:129:{343:129-343:152}: warning: incompatible pointer types sending 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *')
const char *killQueryCString = [SPMySQLConnection _cStringForString:killQuery usingEncoding:aStringEncoding returningLengthAs:&killQueryCStringLength];
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35:
In file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40:
/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h:38:130: note: passing argument to parameter 'cStringLengthPointer' here
+ (const char *)_cStringForString:(NSString *)aString usingEncoding:(NSStringEncoding)anEncoding returningLengthAs:(NSUInteger *)cStringLengthPointer;
^
3 warnings generated.
5(22@111"Incompatible pointer types passing 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *')351091315#0#242#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#115#88#0#0#28"incompatible pointer types *1(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#115#88#115#107#13@57"Passing argument to parameter 'cStringLengthPointer' here351091315#680#156#3(7@83"In file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40:351091315#596#84#0(6@57"/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h351089228#40#0#40#0#0"0(7@121"In file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35:351091315#474#122#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#35#0#35#0#0"0(13@144"Passing argument to parameter 'cStringLengthPointer' here in /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h351091315#18446744073709551615#0#0(6@83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h350270319#49#117#0#0#0"0(6@83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h350270319#49#117#0#0#0"0(22@81"Implicit conversion changes signedness: 'unsigned int' to 'NSInteger' (aka 'int')351091315#1095#242#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#153#78#0#0#0"2(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#153#78#153#106#6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#153#34#153#35#22@111"Incompatible pointer types sending 'unsigned long *' to parameter of type 'NSUInteger *' (aka 'unsigned int *')351091315#1597#244#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#343#129#0#0#28"incompatible pointer types *1(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#343#129#343#152#13@57"Passing argument to parameter 'cStringLengthPointer' here351091315#2383#156#3(7@83"In file included from /Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h:40:351091315#18446744073709551615#0#0(6@57"/Users/rowan/code/SPMySQLFramework/SPMySQL Private APIs.h351089228#40#0#40#0#0"0(7@121"In file included from /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m:35:351091315#18446744073709551615#0#0(6@95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091270#35#0#35#0#0"0(13@144"Passing argument to parameter 'cStringLengthPointer' here in /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h351091315#18446744073709551615#0#0(6@83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h350270319#38#130#0#0#0"0(6@83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.h350270319#38#130#0#0#0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4566089360#1850" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Querying & Preparation.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.519976 +e351091315.589298 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351091315#351091315#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4566089360#1828" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Server Info.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.376687 +e351091315.460709 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@99"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m351091315#351091315#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m4566089360#1848" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Databases & Tables.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.347177 +e351091315.420334 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m351091315#351091315#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m4566089360#1844" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Delegate & Proxy.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.263236 +e351091315.376520 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@94"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m351091315#351091315#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m4566089360#1842" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Field Definitions.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.320220 +e351091315.389086 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@96"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m351091315#351091315#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m4566089360#1842" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Max Packet Size.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091314.746206 +e351091314.990027 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@97"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m351091314#351091314#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m4566089360#1844" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Ping & KeepAlive.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Ping & KeepAlive.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091314.987517 +e351091315.263012 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@103"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m351091314#351091315#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m4566089360#1856" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Querying & Preparation.o"
0# + +CCompileC "build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o" "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091314.748573 +e351091314.984806 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@92"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m351091314#351091314#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m4566089360#1834" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.m" -o "/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Server Info.o"
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.587346 +e351091315.642216 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351091315#351091315#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4566089360#1824" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Conversion.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.460885 +e351091315.587192 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351091315#351091315#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4566089360#1820" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Encoding.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.601304 +e351091315.659779 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351091315#351091315#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4566089360#1818" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/Locking.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.389247 +e351091315.601015 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351091315#351091315#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4566089360#1807" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLConnection.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.659964 +e351091315.878948 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m:767:10:{767:10-767:17}{767:3-767:9}: warning: implicit conversion changes signedness: 'UInt32' (aka 'unsigned long') to 'NSInteger' (aka 'int') [-Wconversion] +o return geoType; +o ~~~~~~ ^~~~~~~ +o1 warning generated. +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351091315#351091315#0(309"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m:767:10:{767:10-767:17}{767:3-767:9}: warning: implicit conversion changes signedness: 'UInt32' (aka 'unsigned long') to 'NSInteger' (aka 'int') [-Wconversion]
return geoType;
~~~~~~ ^~~~~~~
1 warning generated.
1(22@97"Implicit conversion changes signedness: 'UInt32' (aka 'unsigned long') to 'NSInteger' (aka 'int')351091315#0#223#0(6@63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m350270244#767#10#0#0#0"2(6@63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m350270244#767#10#767#17#6@63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m350270244#767#3#767#9#0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4566089360#1811" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLGeometryData.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.642626 +e351091315.743521 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m:353:19:{353:19-353:46}{353:3-353:16}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32] +o itemsToReturn = numberOfRows - state->state; +o ~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +o1 warning generated. +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351091315#351091315#0(373"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m:353:19:{353:19-353:46}{353:3-353:16}: warning: implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32]
itemsToReturn = numberOfRows - state->state;
~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
1(22@102"Implicit conversion loses integer precision: 'unsigned long long' to 'NSUInteger' (aka 'unsigned int')351091315#0#229#0(6@57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351089205#353#19#0#0#0"2(6@57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351089205#353#19#353#46#6@57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351089205#353#3#353#16#0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4566089360#1799" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLResult.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.715443 +e351091315.763302 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m:55:1: warning: control reaches end of non-void function [-Wreturn-type] +o } +o ^ +o1 warning generated. +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351091315#351091315#0(166"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m:55:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
1 warning generated.
1(22@40"Control reaches end of non-void function351091315#0#139#0(6@66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351039326#55#1#0#0#40"control reaches end of non-void function0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4566089360#1817" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStreamingResult.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.763478 +e351091315.802101 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351091315#351091315#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4566089360#1817" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQLStringAdditions.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091314.985444 +e351091315.239722 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@91"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m351091314#351091315#0(0"0(0#0#83"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m4566089360#1830" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Conversion.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Conversion.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091314.747075 +e351091314.987361 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@89"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m351091314#351091314#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m4566089360#1826" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Encoding.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091314.990338 +e351091315.259622 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@88"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m351091314#351091315#0(0"0(0#0#80"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m4566089360#1824" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Locking.m" -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/Locking.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091314.745139 +e351091315.104285 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@69"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m351091314#351091315#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m4566089360#1813" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLConnection.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.239879 +e351091315.589604 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@71"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m351091315#351091315#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m4566089360#1817" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLGeometryData.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.104440 +e351091315.319957 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@65"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m351091315#351091315#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m4566089360#1805" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLResult.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.259780 +e351091315.304425 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +o/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m:55:1: warning: control reaches end of non-void function [-Wreturn-type] +o } +o ^ +o1 warning generated. +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351091315#351091315#0(166"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m:55:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
1 warning generated.
1(22@40"Control reaches end of non-void function351091315#0#139#0(6@66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m351039326#55#1#0#0#40"control reaches end of non-void function0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m4566089360#1823" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStreamingResult.o
0# + +CCompileC build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091315.304845 +e351091315.346992 +r1 +xCompileC +xbuild/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o +x/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF07#2@74"Compile /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m351091315#351091315#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m4566089360#1823" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -include /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStringAdditions.m -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQLStringAdditions.o
0# + +CCopyStringsFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings +s351091313.342511 +e351091313.395429 +r1 +xCopyStringsFile +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +xEnglish.lproj/InfoPlist.strings +lSLF07#2@36"Copy English.lproj/InfoPlist.strings351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/English.lproj/InfoPlist.strings4566089360#367" cd /Users/rowan/code/SPMySQLFramework
setenv ICONV /usr/bin/iconv
/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings --validate --inputencoding utf-8 --outputencoding UTF-16 English.lproj/InfoPlist.strings --outdir /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/English.lproj
0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h" "Source/SPMySQLConnection Categories/Databases & Tables.h" +s351091313.320298 +e351091313.333153 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Databases & Tables.h +xSource/SPMySQLConnection Categories/Databases & Tables.h +lSLF07#2@61"Copy Source/SPMySQLConnection Categories/Databases & Tables.h351091313#351091313#0(0"0(0#0#91"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h4566089360#405" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Databases & Tables.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h" "Source/SPMySQLConnection Categories/Delegate & Proxy.h" +s351091313.319420 +e351091313.342371 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Delegate & Proxy.h +xSource/SPMySQLConnection Categories/Delegate & Proxy.h +lSLF07#2@59"Copy Source/SPMySQLConnection Categories/Delegate & Proxy.h351091313#351091313#0(0"0(0#0#89"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h4566089360#403" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h" "Source/SPMySQLResult Categories/Field Definitions.h" +s351091313.310565 +e351091313.325376 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Field Definitions.h +xSource/SPMySQLResult Categories/Field Definitions.h +lSLF07#2@56"Copy Source/SPMySQLResult Categories/Field Definitions.h351091313#351091313#0(0"0(0#0#86"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h4566089360#400" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult Categories/Field Definitions.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h" "Source/SPMySQLConnection Categories/Max Packet Size.h" +s351091313.318441 +e351091313.333420 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Max Packet Size.h +xSource/SPMySQLConnection Categories/Max Packet Size.h +lSLF07#2@58"Copy Source/SPMySQLConnection Categories/Max Packet Size.h351091313#351091313#0(0"0(0#0#88"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h4566089360#402" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Max Packet Size.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h" "Source/SPMySQLConnection Categories/Querying & Preparation.h" +s351091313.288166 +e351091313.317229 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Querying & Preparation.h +xSource/SPMySQLConnection Categories/Querying & Preparation.h +lSLF07#2@65"Copy Source/SPMySQLConnection Categories/Querying & Preparation.h351091313#351091313#0(0"0(0#0#95"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h4566089360#409" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Querying & Preparation.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader "build/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h" "Source/SPMySQLConnection Categories/Server Info.h" +s351091313.289711 +e351091313.310342 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Server Info.h +xSource/SPMySQLConnection Categories/Server Info.h +lSLF07#2@54"Copy Source/SPMySQLConnection Categories/Server Info.h351091313#351091313#0(0"0(0#0#84"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h4566089360#398" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Server Info.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h "Source/SPMySQLConnection Categories/Encoding.h" +s351091313.288896 +e351091313.317405 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/Encoding.h +xSource/SPMySQLConnection Categories/Encoding.h +lSLF07#2@51"Copy Source/SPMySQLConnection Categories/Encoding.h351091313#351091313#0(0"0(0#0#81"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h4566089360#395" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks "/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection Categories/Encoding.h" /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h SPMySQL.h +s351091313.290545 +e351091313.317984 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQL.h +xSPMySQL.h +lSLF07#2@14"Copy SPMySQL.h351091313#351091313#0(0"0(0#0#44"/Users/rowan/code/SPMySQLFramework/SPMySQL.h4566089360#356" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/SPMySQL.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h Source/SPMySQLConnection.h +s351091313.286917 +e351091313.310077 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnection.h +xSource/SPMySQLConnection.h +lSLF07#2@31"Copy Source/SPMySQLConnection.h351091313#351091313#0(0"0(0#0#61"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h4566089360#373" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnection.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h Source/SPMySQLConnectionDelegate.h +s351091313.291285 +e351091313.321567 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionDelegate.h +xSource/SPMySQLConnectionDelegate.h +lSLF07#2@39"Copy Source/SPMySQLConnectionDelegate.h351091313#351091313#0(0"0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h4566089360#381" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionDelegate.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h Source/SPMySQLConnectionProxy.h +s351091313.313233 +e351091313.331649 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConnectionProxy.h +xSource/SPMySQLConnectionProxy.h +lSLF07#2@36"Copy Source/SPMySQLConnectionProxy.h351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h4566089360#378" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConnectionProxy.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h Source/SPMySQLConstants.h +s351091313.287583 +e351091313.316981 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLConstants.h +xSource/SPMySQLConstants.h +lSLF07#2@30"Copy Source/SPMySQLConstants.h351091313#351091313#0(0"0(0#0#60"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h4566089360#372" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLConstants.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h Source/SPMySQLGeometryData.h +s351091313.292835 +e351091313.321741 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLGeometryData.h +xSource/SPMySQLGeometryData.h +lSLF07#2@33"Copy Source/SPMySQLGeometryData.h351091313#351091313#0(0"0(0#0#63"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h4566089360#375" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLGeometryData.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h Source/SPMySQLResult.h +s351091313.292092 +e351091313.318145 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLResult.h +xSource/SPMySQLResult.h +lSLF07#2@27"Copy Source/SPMySQLResult.h351091313#351091313#0(0"0(0#0#57"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h4566089360#369" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCpHeader build/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h Source/SPMySQLStreamingResult.h +s351091313.293654 +e351091313.321896 +r1 +xCpHeader +xbuild/Release/SPMySQL.framework/Versions/A/Headers/SPMySQLStreamingResult.h +xSource/SPMySQLStreamingResult.h +lSLF07#2@36"Copy Source/SPMySQLStreamingResult.h351091313#351091313#0(0"0(0#0#66"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h4566089360#378" cd /Users/rowan/code/SPMySQLFramework
/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -strip-debug-symbols -resolve-src-symlinks /Users/rowan/code/SPMySQLFramework/Source/SPMySQLStreamingResult.h /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Headers
0# + +CCreateUniversalBinary /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL normal "x86_64 i386" +r0 + +CGenerateDSYMFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework.dSYM /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/SPMySQL +r0 + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL normal i386 +s351091315.939785 +e351091317.535719 +r1 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL +xnormal +xi386 +lSLF07#2@128"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL351091315#351091317#0(0"0(0#0#0"4566089360#863" cd /Users/rowan/code/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Release "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Release -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/i386/SPMySQL
0# + +CLd /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL normal x86_64 +s351091315.589725 +e351091318.239354 +r0 +xLd +x/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL +xnormal +xx86_64 +oclang: error: linker command failed due to signal 11 (use -v to see invocation) +lSLF07#2@130"Link /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL351091315#351091318#0(139"clang: error: linker command failed due to signal 11 (use -v to see invocation)
Command /Developer/usr/bin/clang failed with exit code 245
1(4@58"Command /Developer/usr/bin/clang failed with exit code 245351091318#18446744073709551615#0#0(1@0"0(0#0#0"4566089360#869" cd /Users/rowan/code/SPMySQLFramework
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Developer/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/rowan/code/SPMySQLFramework/build/Release "-L/Users/rowan/code/SPMySQLFramework/MySQL Client Libraries/lib" -F/Users/rowan/code/SPMySQLFramework/build/Release -filelist /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL.LinkFileList -install_name @executable_path/../Frameworks/SPMySQL.framework/Versions/A/SPMySQL -mmacosx-version-min=10.5 -dead_strip -framework Cocoa -lmysqlclient -lz -framework SystemConfiguration -single_module -compatibility_version 1 -current_version 1 -o /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/Objects-normal/x86_64/SPMySQL
245# + +CProcessInfoPlistFile /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist Resources/Info.plist +s351091313.283593 +e351091313.286836 +r1 +xProcessInfoPlistFile +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist +xResources/Info.plist +lSLF07#2@28"Process Resources/Info.plist351091313#351091313#0(0"0(0#0#55"/Users/rowan/code/SPMySQLFramework/Resources/Info.plist4566089472#232" cd /Users/rowan/code/SPMySQLFramework
builtin-infoPlistUtility Resources/Info.plist -expandbuildsettings -platform macosx -o /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/A/Resources/Info.plist
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091313.396535 +e351091314.745028 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xi386 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +oclang: warning: argument unused during compilation: '-flto' +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351091313#351091314#0(60"clang: warning: argument unused during compilation: '-flto'
0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4566089360#1681" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/i386 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-akcogxxzhrvecheeycvxvgronzwm/SPMySQLFramework_Prefix.pch.pth
0# + +CProcessPCH /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth Source/SPMySQLFramework_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler +s351091313.395598 +e351091314.653079 +r1 +xProcessPCH +x/var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth +xSource/SPMySQLFramework_Prefix.pch +xnormal +xx86_64 +xobjective-c +xcom.apple.compilers.llvm.clang.1_0.compiler +oclang: warning: argument unused during compilation: '-flto' +lSLF07#2@45"Precompile Source/SPMySQLFramework_Prefix.pch351091313#351091314#0(60"clang: warning: argument unused during compilation: '-flto'
0(0#0#69"/Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch4566089360#1685" cd /Users/rowan/code/SPMySQLFramework
setenv LANG en_US.US-ASCII
/Developer/usr/bin/clang -x objective-c-header -arch x86_64 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -flto -Wmissing-field-initializers -Wmissing-prototypes -Wreturn-type -Wmissing-braces -Wparentheses -Wswitch -Wunused-variable -Wuninitialized -Wshadow -Wsign-compare -Wconversion -Wshorten-64-to-32 -Wstrict-selector-match -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-generated-files.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-own-target-headers.hmap -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-all-target-headers.hmap -iquote /Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/SPMySQL-project-headers.hmap -F/Users/rowan/code/SPMySQLFramework/build/Release -I/Users/rowan/code/SPMySQLFramework/build/Release/include -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources/x86_64 -I/Users/rowan/code/SPMySQLFramework/build/SPMySQLFramework.build/Release/SPMySQL.framework.build/DerivedSources -c /Users/rowan/code/SPMySQLFramework/Source/SPMySQLFramework_Prefix.pch -o /var/folders/2z/qvbjmrlm8xjfgn006s69xpm80000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/SPMySQLFramework_Prefix-ewvxuxqrezwtesexznalgcozpcmh/SPMySQLFramework_Prefix.pch.pth
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers Versions/Current/Headers +s351091313.281056 +e351091313.283506 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers +xVersions/Current/Headers +lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers351091313#351091313#0(0"0(0#0#0"4566089360#158" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Headers /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Headers
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources Versions/Current/Resources +s351091313.276568 +e351091313.280820 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources +xVersions/Current/Resources +lSLF07#2@84"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources351091313#351091313#0(0"0(0#0#0"4566089360#162" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/Resources /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Resources
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL Versions/Current/SPMySQL +s351091313.277533 +e351091313.281810 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL +xVersions/Current/SPMySQL +lSLF07#2@82"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL351091313#351091313#0(0"0(0#0#0"4566089360#158" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf Versions/Current/SPMySQL /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/SPMySQL
0# + +CSymLink /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current A +s351091313.274448 +e351091313.280642 +r1 +xSymLink +x/Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current +xA +lSLF07#2@91"Process /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current351091313#351091313#0(0"0(0#0#0"4566089360#144" cd /Users/rowan/code/SPMySQLFramework
/bin/ln -sf A /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework/Versions/Current
0# + +CTouch /Users/rowan/code/SPMySQLFramework/build/Release/SPMySQL.framework +r0 + diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/categories.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/categories.pbxbtree Binary files differnew file mode 100644 index 00000000..b4877a47 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/categories.pbxbtree diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/cdecls.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/cdecls.pbxbtree Binary files differnew file mode 100644 index 00000000..91a20ee0 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/cdecls.pbxbtree diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/decls.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/decls.pbxbtree Binary files differnew file mode 100644 index 00000000..2c7cd864 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/decls.pbxbtree diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/files.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/files.pbxbtree Binary files differnew file mode 100644 index 00000000..6f89e86f --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/files.pbxbtree diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/imports.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/imports.pbxbtree Binary files differnew file mode 100644 index 00000000..1458d578 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/imports.pbxbtree diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/pbxindex.header b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/pbxindex.header Binary files differnew file mode 100644 index 00000000..ca471eb9 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/pbxindex.header diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/protocols.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/protocols.pbxbtree Binary files differnew file mode 100644 index 00000000..594062a4 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/protocols.pbxbtree diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/refs.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/refs.pbxbtree Binary files differnew file mode 100644 index 00000000..21992b05 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/refs.pbxbtree diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/control b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/control Binary files differnew file mode 100644 index 00000000..b173c993 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/control diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/strings b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/strings Binary files differnew file mode 100644 index 00000000..e4f988c0 --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/strings.pbxstrings/strings diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/subclasses.pbxbtree b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/subclasses.pbxbtree Binary files differnew file mode 100644 index 00000000..d2a453bd --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/subclasses.pbxbtree diff --git a/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/symbols0.pbxsymbols b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/symbols0.pbxsymbols Binary files differnew file mode 100644 index 00000000..24afea1c --- /dev/null +++ b/Frameworks/SPMySQLFramework/build/SPMySQLFramework.build/SPMySQLFramework.pbxindex/symbols0.pbxsymbols |