diff --git a/FAQ.md b/FAQ.md new file mode 100644 index 0000000..2ddcd31 --- /dev/null +++ b/FAQ.md @@ -0,0 +1,21 @@ +## Common Errors ## +Below is a list of reported errors that have come up, and how to fix them. + +### The file pthreadGC2.dll is missing or not loaded ### +This ANE depends on the POSIX Threading Library provided by GCC. This file is extremely common, but may not be present on all copies of Windows. It is included in this ANE package, but may need to be installed separately. Either extract the .ANE file (it is located in the /META-INF/ane/Windows-x86 folder), or download a copy from the Downloads tab in the project. Copy it to the following locations : + + * Windows XP(32/64), Windows Vista(32), Windows 7(32) - C:\Windows\System32\ + * Windows Vista(64), Windows 7(64) - C:\Windows\SysWOW64\ + +### My AIR Application or ADL.EXE crashes when the app is closing ### +It is a requirement of the AIR Runtime that you call the `dispose()` function before the app ends in order to unload the ANE and all of its allocated resources. This is extra important with this ANE as it works with file handlers that the OS will need to free up for other applications. + +There are instances where the ADL will crash even though the dispose function is called. This is a known timing issue with AIR 3. + +### I get an error stating that the method `setupPort` was not found ### +There is a known issue with Flash Builder 4.6 and Flash Builder 4.7 on the Mac OSX platform. FB 4.x does not pass the proper command line parameters to ADL in order to include the ANE. + +You have three options to fix the issue : + * Execute your app using the Export Release Build. This will build the AIR app in a way that will run the project just fine. + * Run ADL from the command line. Extract the .ANE to a location you will be familar with, and execute the adl -profile extendedDesktop -extdir + * Create an ANT script to launch the debug version of your app. This is what I recommend, but it takes a bit of setup. \ No newline at end of file diff --git a/Introduction.md b/Introduction.md new file mode 100644 index 0000000..45ad541 --- /dev/null +++ b/Introduction.md @@ -0,0 +1,52 @@ +Connecting Arduino Prototyping board to Adobe AIR through an AIR Native Extension. Available for Windows and MacOSX. + +# AIR Native Extensions # +AIR Native Extensions, or ANEs are compiled code that includes both Native code (specific code for Windows, Mac, or one of the many mobile platforms) and ActionScript code that allows developers to extend the feature set that is available in AIR or the Flash Player. + +This ANE exposes the Serial port that is created by the Arduino Uno, Arduino LilyPad, Arduino Mega, Arduino Duemilanove and various other Arduino Compatibles. It can also be used with any device that communicates via a serial port (COM port). + +## Background ## +The ArduinoConnector mimics the _flash.net.Socket_ class that is internal to the Flex Framework. It was chosen to mimic this class because many of the more popular Arduino projects target the Socket class because they use serProxy to transport the data to the serial port. + +## Use ## +Instruct your IDE to include the ANE that you downloaded from the Downloads tab. In Flash Builder 4.6+, right click on your project, go to the Flash Builder Path properties, click on the Native Extensions tab, and add the ANE. + +Next, add a new ArduinoConnector instance. You will need to pass the COM port that the Arduino is connected to, along with the baud rate to the `connect()` function (as3Glue uses 57600, most Arduino samples use 9600). You can get a list of valid COM ports for your operating system by taking in the `getComPorts()` array. Also, add a function that will "dispose" or clean up the connection when you are finished (if you do not do this, the AIR runtime may crash when your app closes). +``` +public var arduino:ArduinoConnector; + +public function initApp():void +{ + arduino = new ArduinoConnector(); + arduino.connect("COM10",9600); +} + +protected function closeApp(event:Event):void +{ + arduino.dispose(); +} +``` + +### Reading Data ### +When ArduinoConnector gets data from the serial port, it will fire an event that has the "socketData" signature. When the event is fired, you can check the `bytesAvailable` variable to see how much data is in the buffer, and you can use one of the following functions to get data : + * public function readBytesAsArray():Array + * public function readBytesAsString():String + * public function readBytesAsByteArray():ByteArray + * public function readByte():uint +The buffer mirrors the UART, and holds at most 4046 bytes (4k) worth of data. All the above functions will clear the buffer, with the exception of readByte(), which will only return the top byte from the buffer (FIFO order). + +### Sending Data ### +Before sending data, make sure the port was successfully opened by checking the 'portOpen' variable. If the port is not open, the write functions will fail and return false. You can use the following functions to send data to the serial port : + * public function writeByte(byte:uint):Boolean + * public function writeString(stringToSend:String):Boolean + * public function writeBytes(bytesToSend:ByteArray):Boolean +The functions will return TRUE if the data was successfully sent, and FALSE if there was an error sending the data. The data is sent in another thread, but is virtually synchronous. There is no send buffer, so there is no need to 'flush' the data. + +## Using with as3Glue ## +as3Glue is the most popular library for people to deal with Arduinos. It allows the developer to load the Firmata code onto their Arduino and control all the pins using AS3 rather than the embedded C that the Arduino uses natively. + +Download either the SWC or Source Code from the Downloads section of this project for a patched version of as3Glue. This patched version has the exact same interfaces as v20, with a notable exception of the constructor. When you instantiate a new "Arduino" object, replace the IP address and port with the COM port and baud rate. For example : + +`public var myArduino:Arduino = new Arduino("COM10", 57600);` + +You can find out more about as3Glue at http://code.google.com/p/as3Glue \ No newline at end of file diff --git a/ProjectHome.md b/ProjectHome.md new file mode 100644 index 0000000..e7491aa --- /dev/null +++ b/ProjectHome.md @@ -0,0 +1,52 @@ +Connecting Arduino Prototyping board to Adobe AIR through an AIR Native Extension. Available for Windows and MacOSX. + +# AIR Native Extensions # +AIR Native Extensions, or ANEs are compiled code that includes both Native code (specific code for Windows, Mac, or one of the many mobile platforms) and ActionScript code that allows developers to extend the feature set that is available in AIR or the Flash Player. + +This ANE exposes the Serial port that is created by the Arduino Uno, Arduino LilyPad, Arduino Mega, Arduino Duemilanove and various other Arduino Compatibles. + +## Background ## +The ArduinoConnector mimics the _flash.net.Socket_ class that is internal to the Flex Framework. It was chosen to mimic this class because many of the more popular Arduino projects target the Socket class because they use serProxy to transport the data to the serial port. + +## Use ## +Instruct your IDE to include the ANE that you downloaded from the Downloads tab. In Flash Builder 4.6, right click on your project, go to the Flash Builder Path properties, click on the Native Extensions tab, and add the ANE. + +Next, add a new ArduinoConnector instance. You will need to pass the COM port that the Arduino is connected to, along with the baud rate to the `connect()` function (as3Glue uses 57600, most Arduino samples use 9600). You can get a list of valid COM ports for your operating system by taking in the `getComPorts()` array. Also, add a function that will "dispose" or clean up the connection when you are finished (if you do not do this, the AIR runtime may crash when your app closes). +``` +public var arduino:ArduinoConnector; + +public function initApp():void +{ + arduino = new ArduinoConnector(); + arduino.connect("COM10",9600); +} + +protected function closeApp(event:Event):void +{ + arduino.dispose(); +} +``` + +### Reading Data ### +When ArduinoConnector gets data from the serial port, it will fire an event that has the "socketData" signature. When the event is fired, you can check the `bytesAvailable` variable to see how much data is in the buffer, and you can use one of the following functions to get data : + * public function readBytesAsArray():Array + * public function readBytesAsString():String + * public function readBytesAsByteArray():ByteArray + * public function readByte():uint +The buffer mirrors the UART, and holds at most 4046 bytes (4k) worth of data. All the above functions will clear the buffer, with the exception of readByte(), which will only return the top byte from the buffer (FIFO order). + +### Sending Data ### +Before sending data, make sure the port was successfully opened by checking the 'portOpen' variable. If the port is not open, the write functions will fail and return false. You can use the following functions to send data to the serial port : + * public function writeByte(byte:uint):Boolean + * public function writeString(stringToSend:String):Boolean + * public function writeBytes(bytesToSend:ByteArray):Boolean +The functions will return TRUE if the data was successfully sent, and FALSE if there was an error sending the data. The data is sent in another thread, but is virtually synchronous. There is no send buffer, so there is no need to 'flush' the data. + +## Using with as3Glue ## +as3Glue is the most popular library for people to deal with Arduinos. It allows the developer to load the Firmata code onto their Arduino and control all the pins using AS3 rather than the embedded C that the Arduino uses natively. + +Download either the SWC or Source Code from the Downloads section of this project for a patched version of as3Glue. This patched version has the exact same interfaces as v20, with a notable exception of the constructor. When you instantiate a new "Arduino" object, replace the IP address and port with the COM port and baud rate. For example : + +`public var myArduino:Arduino = new Arduino("COM10", 57600);` + +You can find out more about as3Glue at http://code.google.com/p/as3Glue \ No newline at end of file diff --git a/README.md b/README.md deleted file mode 100644 index d80c25e..0000000 --- a/README.md +++ /dev/null @@ -1,59 +0,0 @@ -### as3-arduino-connector -Connecting Arduino Prototyping board to Adobe AIR through an AIR Native Extension. Available for Windows and MacOSX. - -### AIR Native Extensions -AIR Native Extensions, or ANEs are compiled code that includes both Native code (specific code for Windows, Mac, or one of the many mobile platforms) and ActionScript? code that allows developers to extend the feature set that is available in AIR or the Flash Player. - -This ANE exposes the Serial port that is created by the Arduino Uno, Arduino LilyPad?, Arduino Mega, Arduino Duemilanove and various other Arduino Compatibles. - -####Background -The ArduinoConnector? mimics the flash.net.Socket class that is internal to the Flex Framework. It was chosen to mimic this class because many of the more popular Arduino projects target the Socket class because they use serProxy to transport the data to the serial port. - -####Use -Instruct your IDE to include the ANE that you downloaded from the Downloads tab. In Flash Builder 4.6, right click on your project, go to the Flash Builder Path properties, click on the Native Extensions tab, and add the ANE. - -Next, add a new ArduinoConnector? instance. You will need to pass the COM port that the Arduino is connected to, along with the baud rate to the connect() function (as3Glue uses 57600, most Arduino samples use 9600). You can get a list of valid COM ports for your operating system by taking in the getComPorts() array. Also, add a function that will "dispose" or clean up the connection when you are finished (if you do not do this, the AIR runtime may crash when your app closes). - -```actionscript -public var arduino:ArduinoConnector; - -public function initApp():void -{ - arduino = new ArduinoConnector(); - arduino.connect("COM10",9600); -} - -protected function closeApp(event:Event):void -{ - arduino.dispose(); -} -``` - -####Reading Data -When ArduinoConnector? gets data from the serial port, it will fire an event that has the "socketData" signature. When the event is fired, you can check the bytesAvailable variable to see how much data is in the buffer, and you can use one of the following functions to get data : - - * public function readBytesAsArray():Array - * public function readBytesAsString():String - * public function readBytesAsByteArray():ByteArray? - * public function readByte():uint - -The buffer mirrors the UART, and holds at most 4046 bytes (4k) worth of data. All the above functions will clear the buffer, with the exception of readByte(), which will only return the top byte from the buffer (FIFO order). -####Sending Data -Before sending data, make sure the port was successfully opened by checking the 'portOpen' variable. If the port is not open, the write functions will fail and return false. You can use the following functions to send data to the serial port : - - * public function writeByte(byte:uint):Boolean - * public function writeString(stringToSend:String):Boolean - * public function writeBytes(bytesToSend:ByteArray?):Boolean - -The functions will return TRUE if the data was successfully sent, and FALSE if there was an error sending the data. The data is sent in another thread, but is virtually synchronous. There is no send buffer, so there is no need to 'flush' the data. - -####Using with as3Glue -as3Glue is the most popular library for people to deal with Arduinos. It allows the developer to load the Firmata code onto their Arduino and control all the pins using AS3 rather than the embedded C that the Arduino uses natively. - -Download either the SWC or Source Code from the Downloads section of this project for a patched version of as3Glue. This patched version has the exact same interfaces as v20, with a notable exception of the constructor. When you instantiate a new "Arduino" object, replace the IP address and port with the COM port and baud rate. For example : - -```actionscript -public var myArduino:Arduino = new Arduino("COM10", 57600); -``` - -You can find out more about as3Glue at http://code.google.com/p/as3Glue diff --git a/as3-library/MacOS-x86/src/com/quetwo/Arduino/ArduinoConnector.as b/as3-library/MacOS-x86/src/com/quetwo/Arduino/ArduinoConnector.as deleted file mode 100644 index 8af6c80..0000000 --- a/as3-library/MacOS-x86/src/com/quetwo/Arduino/ArduinoConnector.as +++ /dev/null @@ -1,413 +0,0 @@ -/* -* Version: MPL 1.1 -* -* The contents of this file are subject to the Mozilla Public License Version -* 1.1 (the "License"); you may not use this file except in compliance with -* the License. You may obtain a copy of the License at -* http://www.mozilla.org/MPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is ArduinoConnector.as -* -* The Initial Developer of the Original Code is Nicholas Kwiatkowski. -* Portions created by the Initial Developer are Copyright (C) 2011 -* the Initial Developer. All Rights Reserved. -* -* The Assistant Developer is Ellis Elkins on behalf of DirectAthletics. -* Portions created by the Assistant Developer are Copyright (C) 2013 -* DirectAthletics. All Rights Reserved. -* -* Updated 2012-03-15 - Included updates to fix issues 9,10,11. -* Updated 2012-01-04 - Added the ability to enable DTR Control when port is opened. -* Also added the reinitiate function to allow reloading of the native code. -* -*/ - -package com.quetwo.Arduino -{ - import com.quetwo.Arduino.ArduinoConnectorEvent; - - import flash.events.Event; - import flash.events.EventDispatcher; - import flash.events.IEventDispatcher; - import flash.events.StatusEvent; - import flash.external.ExtensionContext; - import flash.filesystem.File; - import flash.utils.ByteArray; - - [Event(name="socketData", type="com.quetwo.Arduino.ArduinoConnectorEvent")] - public class ArduinoConnector extends EventDispatcher - { - - private var _ExtensionContext:ExtensionContext; - private var _comPort:String; - private var _baud:Number; - /** Whether to enable DTR Control for the serial connection. */ - private var _useDtrControl:Boolean; - private var _portOpen:Boolean = false; - private var _bytesAvailable:Number = 0; - - - /** - * - * The ArduinoConnector constructor. Initiates native code. - * - */ - public function ArduinoConnector() - { - initiate(); - } - - /** - * This will initilize the native code. - * - */ - protected function initiate():void - { - trace("[ArduinoConnector] Initalizing ANE..."); - try - { - _ExtensionContext = ExtensionContext.createExtensionContext("com.quetwo.Arduino.ArduinoConnector", null); - _ExtensionContext.addEventListener(StatusEvent.STATUS, gotEvent); - } - catch (e:Error) - { - trace("[ArduinoConnector] Unable to load the .DLL! Make sure libSerialANE.DLL and PthreadGC2.dll are available."); - trace("[ArduinoConnector] ANE Not loaded properly. Future calls will fail."); - } - } - - /** - * - * This is where you set the communications port and baud rate. If there is an issue opening up the communications port the portOpen property - * will be false, and the function will return false. You should check this before attempting to communicate with the Arduino. - * - * @param comPort This is the communications port that the Arduino is connected to. Call getComPorts() to get a valid list for this OS - * @param baud This is the baud rate that the Arduino is connected at. 57600 is the default for the Firmata sketch. - * @param useDtrControl Whether to enable DTR Control for the serial connection. - * - */ - public function connect(comPort:String, baud:Number=57600, useDtrControl:Boolean = false):Boolean - { - var createComPortResult:Boolean; - _comPort = comPort; - _baud = baud; - _useDtrControl = useDtrControl; - - createComPortResult = _ExtensionContext.call("setupPort", _comPort, _baud, (_useDtrControl ? 1 : 0)) as Boolean; - trace("[ArduinoConnector] Opening COM port handle number", _comPort.toString(), "success = ",createComPortResult); - _portOpen = createComPortResult; - return createComPortResult; - } - - /** - * - * This will return if this ANE is supported on this platform. - * - * @return TRUE if the ANE is supported on this platform. FALSE if the ANE is not supported. - * - */ - public function isSupported():Boolean - { - return _ExtensionContext.call("isSupported"); - } - - /** - * - * This will return if the communication port has been initalized and is ready for use. - * - * @return TRUE if the COM port is open and ready for use. FALSE if there was a problem initalizing it. - * - */ - public function get portOpen():Boolean - { - return _portOpen; - } - - /** - * - * This funciton will return an array that represents what is in the buffer. Additionally, calling this function will clear - * the serial buffer. - * - * @return An Array that represents the bits in the buffer. Each character in the buffer is its own array element - * - */ - public function readBytesAsArray():Array - { - if (!_portOpen) - { - trace("[ArduinoConnector] COM Port is not open failure"); - return new Array(); - } - _bytesAvailable = 0; - return _ExtensionContext.call("getBytesAsArray") as Array; - } - - /** - * - * This function will return a string representation of what is in the serial buffer. Additionally, calling this function will - * clear the serial buffer. - * - * @return A String that represents the bits in the buffer. Non-printable characters may not be represented. - * - */ - public function readBytesAsString():String - { - if (!_portOpen) - { - trace("[ArduinoConnector] COM Port is not open failure"); - return ''; - } - _bytesAvailable = 0; - return _ExtensionContext.call("getBytesAsString") as String; - } - - /** - * - * This function will return a ByteArray representation of what is in the serial buffer. Additionally, calling this function will - * clear the serial buffer. - * - * @return A ByteArray that represents the bits in the buffer. - * - */ - public function readBytesAsByteArray():ByteArray - { - if (!_portOpen) - { - trace("[ArduinoConnector] COM Port is not open failure"); - return new ByteArray(); - } - _bytesAvailable = 0; - - var ba:ByteArray = new ByteArray(); - var baLength:Number = 0; - ba.length = 4097; // expand the byteArray to the max potential size - baLength = _ExtensionContext.call("getBytesAsByteArray", ba) as Number; - ba.position = 0; - ba.length = baLength; // tuncate the byteArray to what was in the buffer. - return ba; - } - - /** - * - * Reads a single byte from the buffer. This is a FIFO buffer, and the first element will be returned and removed from the buffer. - * The events will not fire unless the buffer was emptied with this function. - * - * @return A single 8-bit byte from the buffer. - * - */ - public function readByte():uint - { - if (!_portOpen) - { - trace("[ArduinoConnector] COM Port is not open failure"); - return 0; - } - _bytesAvailable--; - return _ExtensionContext.call("getByte") as uint; - } - - - /** - * - * Writes a single byte to the serial port. - * - * @param byte The byte that you wish to send. - * @return TRUE if the sned was successful. FALSE if there was an error sending the data. - * - */ - public function writeByte(byte:uint):Boolean - { - if (!_portOpen) - { - trace("[ArduinoConnector] COM Port is not open failure"); - return false; - } - return _ExtensionContext.call("sendByte", byte); - } - - - /** - * - * This function will send the provided String to the serial port. - * - * @param stringToSend The String that you wish to send to the Serial Port. - * @return TRUE if the send was successful. FALSE if there was an error sending the data. - * - */ - public function writeString(stringToSend:String):Boolean - { - if (!_portOpen) - { - trace("[ArduinoConnector] COM Port is not open failure"); - return false; - } - return _ExtensionContext.call("sendString", stringToSend); - } - - /** - * - * This function will send the contents of a ByteArray to the serial port. - * - * @param bytesToSend The ByteArray that you plan on sending to the serial port. The position will be rewinded to 0. - * @return TRUE if the send was successful. FALSE if there was an error sending the data. - * - */ - public function writeBytes(bytesToSend:ByteArray):Boolean - { - if (!_portOpen) - { - trace("[ArduinoConnector] COM Port is not open failure"); - return false; - } - bytesToSend.position = 0; - return _ExtensionContext.call("sendByteArray", bytesToSend); - } - - /** - * - * This function pretends to flush the serial port buffer. Data is sent out as it is sent to the various write* functions. Don't use this, - * you are only wasting CPU cycles and that makes Clu angry. You don't want him angry. He gets even. - * - * This function is stubbed out purely to maintain compatibility with the flash.net.Socket class. - * - */ - public function flush():void - { - // This is just stubbed out. We always send out as soon as we are passed the data. - } - - /*** - * - * This function closes the COM port, clears the buffer, and allows you to call the connect function again. - * - */ - public function close():void - { - _ExtensionContext.call("closePort"); - _portOpen = false; - } - - /** - * Unloads and reloads the native code. - * - */ - public function reinitiate():void - { - dispose(); - initiate(); - } - - /** - * - * Call this function to close the COM port and clean up the ANE. This MUST be called before the AIR application closes, - * or the Operating System may throw an error. If the COM port is not cleaned up properly, it may be locked from use of - * other applications. Please, just run this before you exit your AIR app, or kittens may die. - * - */ - public function dispose():void - { - if (!_ExtensionContext) - { - trace("[ArduinoConnector] Error. ANE Already in a disposed or failed state..."); - return; - } - trace("[ArduinoConnector] Unloading ANE..."); - _portOpen = false; - _ExtensionContext.removeEventListener(StatusEvent.STATUS, gotEvent); - _ExtensionContext.dispose(); - } - - /** - * - * Returns the number of bytes that are available in the buffer - * - * @return Number of bytes available in the buffer. - * - */ - public function get bytesAvailable():Number - { - return _bytesAvailable; - } - - /** - * @private - * - * This is the event that is fired by the DLL when there is new data in the buffer. - * - * @param event Event Payload. - * - */ - private function gotEvent(event:StatusEvent):void - { - _bytesAvailable = _ExtensionContext.call("getAvailableBytes") as int; - var e:ArduinoConnectorEvent = new ArduinoConnectorEvent("socketData"); - dispatchEvent(e); - } - - // ********************************************************************************** - // - // BELOW IS MacOSX SPECIFIC CODE. YOU WILL NEED TO BUILD A LIB FOR OTHER PLATFORMS - // - // ********************************************************************************** - - /** - * - * This function will return an array of valid COM ports for this operating system. It will not necessarly provide valid - * COM ports for this machine, but what is valid for the OS in general. - * - * @param includeAllSerial Include all serial ports. (For Mac) - * @param includeAll Include all ports. (For Mac) - * - * @return An array of Strings containing the COM port names. - * - */ - public function getComPorts(includeAllSerial:Boolean = false, includeAll:Boolean = false):Array - { - var validComPorts:Array = new Array(); - - var allDevDevices:Array; - var devDirectory:File = new File("/dev/"); - var searchRegex:RegExp; - //if all serial ports allowed - if(includeAllSerial) - //get any ports that start with tty. or cu. - searchRegex = /\/dev\/(tty|cu)\./; - //otherwise we should just return the arduino ports or all ports - else - //so store the arduino port regex, which matches any port that starts with tty.usb - searchRegex = /\/dev\/tty\.usb/; - - //get all the ports - allDevDevices = devDirectory.getDirectoryListing(); - - //loop through the ports - for each (var i:File in allDevDevices) - { - //if we should include all ports or if the native path has a match for our regex - if (includeAll || i.nativePath.match(searchRegex)) - { - //save this port reference - validComPorts.push(i.nativePath); - } - } - - //return requested ports - return validComPorts; - } - - /** - * Find the COM port as a string that people know, and turn it into the file handler number - * COM1 =1, COM3 = 3, etc. Only for Windows. - */ - private function convertCOMString(comString:String):Number - { - return NaN; - } - - } -} \ No newline at end of file diff --git a/as3-library/MacOS-x86/src/com/quetwo/Arduino/ArduinoConnectorEvent.as b/as3-library/MacOS-x86/src/com/quetwo/Arduino/ArduinoConnectorEvent.as deleted file mode 100644 index 0ab46e1..0000000 --- a/as3-library/MacOS-x86/src/com/quetwo/Arduino/ArduinoConnectorEvent.as +++ /dev/null @@ -1,38 +0,0 @@ -/* -* Version: MPL 1.1 -* -* The contents of this file are subject to the Mozilla Public License Version -* 1.1 (the "License"); you may not use this file except in compliance with -* the License. You may obtain a copy of the License at -* http://www.mozilla.org/MPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is ArduinoConnector.as -* -* The Initial Developer of the Original Code is Nicholas Kwiatkowski. -* Portions created by the Initial Developer are Copyright (C) 2011 -* the Initial Developer. All Rights Reserved. -* -*/ - -package com.quetwo.Arduino -{ - import flash.events.ProgressEvent; - - public class ArduinoConnectorEvent extends ProgressEvent - { - - public const SOCKET_DATA:String = "socketData"; - public const PROGRESS:String = "progress"; - - public function ArduinoConnectorEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false) - { - super(type, bubbles, cancelable); - } - - } -} \ No newline at end of file diff --git a/as3-library/MacOS-x86/src/main/resources/extension.xml b/as3-library/MacOS-x86/src/main/resources/extension.xml deleted file mode 100644 index 8dcc9f0..0000000 --- a/as3-library/MacOS-x86/src/main/resources/extension.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - com.quetwo.Arduino.ArduinoConnector - Arduino Connector - This work is licensed under Mozilla Public License Version 1.1, Copyright 2012 - 1.2.0 - - - - libSerialANE.dll - SerialANEinitializer - SerialANEfinalizer - - - - - SerialANE.framework - SerialANEinitializer - SerialANEfinalizer - - - - \ No newline at end of file diff --git a/as3-library/Windows-x86/src/com/quetwo/Arduino/ArduinoConnector.as b/as3-library/Windows-x86/src/com/quetwo/Arduino/ArduinoConnector.as deleted file mode 100644 index e03ffe3..0000000 --- a/as3-library/Windows-x86/src/com/quetwo/Arduino/ArduinoConnector.as +++ /dev/null @@ -1,405 +0,0 @@ -/* -* Version: MPL 1.1 -* -* The contents of this file are subject to the Mozilla Public License Version -* 1.1 (the "License"); you may not use this file except in compliance with -* the License. You may obtain a copy of the License at -* http://www.mozilla.org/MPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is ArduinoConnector.as -* -* The Initial Developer of the Original Code is Nicholas Kwiatkowski. -* Portions created by the Initial Developer are Copyright (C) 2011 -* the Initial Developer. All Rights Reserved. -* -* The Assistant Developer is Ellis Elkins on behalf of DirectAthletics. -* Portions created by the Assistant Developer are Copyright (C) 2013 -* DirectAthletics. All Rights Reserved. -* -* Updated 2012-03-15 - File Handlers updated so we can use > 16 ComPorts. -* Because > 16 COM Ports is not valid with all Win OSs, the getComPorts() will not -* be updated to reflect this support. -* Updated 2012-01-04 - Added the ability to enable DTR Control when port is opened. -* Also added the reinitiate function to allow reloading of the native code. -* -*/ - -package com.quetwo.Arduino -{ - import com.quetwo.Arduino.ArduinoConnectorEvent; - - import flash.events.Event; - import flash.events.EventDispatcher; - import flash.events.IEventDispatcher; - import flash.events.StatusEvent; - import flash.external.ExtensionContext; - import flash.utils.ByteArray; - - [Event(name="socketData", type="com.quetwo.Arduino.ArduinoConnectorEvent")] - public class ArduinoConnector extends EventDispatcher - { - - private var _ExtensionContext:ExtensionContext; - private var _comPort:Number; - private var _baud:Number; - /** Whether to enable DTR Control for the serial connection. */ - private var _useDtrControl:Boolean; - private var _portOpen:Boolean = false; - private var _bytesAvailable:Number = 0; - - /** - * - * The ArduinoConnector constructor. Initiates native code. - * - */ - public function ArduinoConnector() - { - initiate(); - } - - /** - * This will initilize the native code. - * - */ - protected function initiate():void - { - trace("[ArduinoConnector] Initalizing ANE..."); - try - { - _ExtensionContext = ExtensionContext.createExtensionContext("com.quetwo.Arduino.ArduinoConnector", null); - _ExtensionContext.addEventListener(StatusEvent.STATUS, gotEvent); - } - catch (e:Error) - { - trace("[ArduinoConnector] Unable to load the .DLL! Make sure libSerialANE.DLL and PthreadGC2.dll are available."); - trace("[ArduinoConnector] ANE Not loaded properly. Future calls will fail."); - } - } - - /** - * - * This is where you set the communications port and baud rate. If there is an issue opening up the communications port the portOpen property - * will be false, and the function will return false. You should check this before attempting to communicate with the Arduino. - * - * @param comPort This is the communications port that the Arduino is connected to. Call getComPorts() to get a valid list for this OS - * @param baud This is the baud rate that the Arduino is connected at. 57600 is the default for the Firmata sketch. - * @param useDtrControl Whether to enable DTR Control for the serial connection. - * - */ - public function connect(comPort:String, baud:Number=57600, useDtrControl:Boolean = false):Boolean - { - var createComPortResult:Boolean; - _comPort = convertCOMString(comPort); - _baud = baud; - _useDtrControl = useDtrControl; - - createComPortResult = _ExtensionContext.call("setupPort", int(_comPort), int(_baud), - int(_useDtrControl ? 1 : 0)) as Boolean; - trace("[ArduinoConnector] Opening COM port handle number", _comPort.toString(), "success = ",createComPortResult); - _portOpen = createComPortResult; - return _portOpen; - } - - /** - * - * This will return if this ANE is supported on this platform. - * - * @return TRUE if the ANE is supported on this platform. FALSE if the ANE is not supported. - * - */ - public function isSupported():Boolean - { - return _ExtensionContext.call("isSupported"); - } - - /** - * - * This will return if the communication port has been initalized and is ready for use. - * - * @return TRUE if the COM port is open and ready for use. FALSE if there was a problem initalizing it. - * - */ - public function get portOpen():Boolean - { - return _portOpen; - } - - /** - * - * This funciton will return an array that represents what is in the buffer. Additionally, calling this function will clear - * the serial buffer. - * - * @return An Array that represents the bits in the buffer. Each character in the buffer is its own array element - * - */ - public function readBytesAsArray():Array - { - if (!_portOpen) - { - trace("[ArduinoConnector] COM Port is not open failure"); - return new Array(); - } - _bytesAvailable = 0; - return _ExtensionContext.call("getBytesAsArray") as Array; - } - - /** - * - * This function will return a string representation of what is in the serial buffer. Additionally, calling this function will - * clear the serial buffer. - * - * @return A String that represents the bits in the buffer. Non-printable characters may not be represented. - * - */ - public function readBytesAsString():String - { - if (!_portOpen) - { - trace("[ArduinoConnector] COM Port is not open failure"); - return ''; - } - _bytesAvailable = 0; - return _ExtensionContext.call("getBytesAsString") as String; - } - - /** - * - * This function will return a ByteArray representation of what is in the serial buffer. Additionally, calling this function will - * clear the serial buffer. - * - * @return A ByteArray that represents the bits in the buffer. - * - */ - public function readBytesAsByteArray():ByteArray - { - if (!_portOpen) - { - trace("[ArduinoConnector] COM Port is not open failure"); - return new ByteArray(); - } - _bytesAvailable = 0; - - var ba:ByteArray = new ByteArray(); - var baLength:Number = 0; - ba.length = 4097; // expand the byteArray to the max potential size - baLength = _ExtensionContext.call("getBytesAsByteArray", ba) as Number; - ba.position = 0; - ba.length = baLength; // tuncate the byteArray to what was in the buffer. - return ba; - } - - /** - * - * Reads a single byte from the buffer. This is a FIFO buffer, and the first element will be returned and removed from the buffer. - * The events will not fire unless the buffer was emptied with this function. - * - * @return A single 8-bit byte from the buffer. - * - */ - public function readByte():uint - { - if (!_portOpen) - { - trace("[ArduinoConnector] COM Port is not open failure"); - return 0; - } - _bytesAvailable--; - return _ExtensionContext.call("getByte") as uint; - } - - - /** - * - * Writes a single byte to the serial port. - * - * @param byte The byte that you wish to send. - * @return TRUE if the sned was successful. FALSE if there was an error sending the data. - * - */ - public function writeByte(byte:uint):Boolean - { - if (!_portOpen) - { - trace("[ArduinoConnector] COM Port is not open failure"); - return false; - } - return _ExtensionContext.call("sendByte", byte); - } - - - /** - * - * This function will send the provided String to the serial port. - * - * @param stringToSend The String that you wish to send to the Serial Port. - * @return TRUE if the send was successful. FALSE if there was an error sending the data. - * - */ - public function writeString(stringToSend:String):Boolean - { - if (!_portOpen) - { - trace("[ArduinoConnector] COM Port is not open failure"); - return false; - } - return _ExtensionContext.call("sendString", stringToSend); - } - - /** - * - * This function will send the contents of a ByteArray to the serial port. - * - * @param bytesToSend The ByteArray that you plan on sending to the serial port. The position will be rewinded to 0. - * @return TRUE if the send was successful. FALSE if there was an error sending the data. - * - */ - public function writeBytes(bytesToSend:ByteArray):Boolean - { - if (!_portOpen) - { - trace("[ArduinoConnector] COM Port is not open failure"); - return false; - } - bytesToSend.position = 0; - return _ExtensionContext.call("sendByteArray", bytesToSend); - } - - /** - * - * This function pretends to flush the serial port buffer. Data is sent out as it is sent to the various write* functions. Don't use this, - * you are only wasting CPU cycles and that makes Clu angry. You don't want him angry. He gets even. - * - * This function is stubbed out purely to maintain compatibility with the flash.net.Socket class. - * - */ - public function flush():void - { - // This is just stubbed out. We always send out as soon as we are passed the data. - } - - /*** - * - * This function closes the COM port, clears the buffer, and allows you to call the connect function again. - * - */ - public function close():void - { - _ExtensionContext.call("closePort"); - _portOpen = false; - } - - /** - * Unloads and reloads the native code. - * - */ - public function reinitiate():void - { - dispose(); - initiate(); - } - - /** - * - * Call this function to close the COM port and clean up the ANE. This MUST be called before the AIR application closes, - * or the Operating System may throw an error. If the COM port is not cleaned up properly, it may be locked from use of - * other applications. Please, just run this before you exit your AIR app, or kittens may die. - * - */ - public function dispose():void - { - if (!_ExtensionContext) - { - trace("[ArduinoConnector] Error. ANE Already in a disposed or failed state..."); - return; - } - trace("[ArduinoConnector] Unloading ANE..."); - _portOpen = false; - _ExtensionContext.removeEventListener(StatusEvent.STATUS, gotEvent); - _ExtensionContext.dispose(); - } - - /** - * - * Returns the number of bytes that are available in the buffer - * - * @return Number of bytes available in the buffer. - * - */ - public function get bytesAvailable():Number - { - return _bytesAvailable; - } - - /** - * @private - * - * This is the event that is fired by the DLL when there is new data in the buffer. - * - * @param event Event Payload. - * - */ - private function gotEvent(event:StatusEvent):void - { - _bytesAvailable = _ExtensionContext.call("getAvailableBytes") as int; - var e:ArduinoConnectorEvent = new ArduinoConnectorEvent("socketData"); - dispatchEvent(e); - } - - // ********************************************************************************** - // - // BELOW IS WINDOWS SPECIFIC CODE. YOU WILL NEED TO BUILD A LIB FOR OTHER PLATFORMS - // - // ********************************************************************************** - - // What are void COM Port Numbers in Windows? 1->16. - - /** - * - * This function will return an array of valid COM ports for this operating system. It will not necessarly provide valid - * COM ports for this machine, but what is valid for the OS in general. - * - * @param includeAllSerial Include all serial ports. (For Mac) - * @param includeAll Include all ports. (For Mac) - * - * @return An array of Strings containing the COM port names. - * - */ - public function getComPorts(includeAllSerial:Boolean = false, includeAll:Boolean = false):Array - { - var validComPorts:Array = new Array(); - validComPorts.push("COM1"); - validComPorts.push("COM2"); - validComPorts.push("COM3"); - validComPorts.push("COM4"); - validComPorts.push("COM5"); - validComPorts.push("COM6"); - validComPorts.push("COM7"); - validComPorts.push("COM8"); - validComPorts.push("COM9"); - validComPorts.push("COM10"); - validComPorts.push("COM11"); - validComPorts.push("COM12"); - validComPorts.push("COM13"); - validComPorts.push("COM14"); - validComPorts.push("COM15"); - validComPorts.push("COM16"); - return validComPorts; - } - - /** - * Find the COM port as a string that people know, and turn it into the file handler number - * COM1 =1, COM3 = 3, etc. Only for Windows. - */ - private function convertCOMString(comString:String):Number - { - var myPort:Number = Number(comString.slice(3)); - return myPort; - } - - } -} \ No newline at end of file diff --git a/as3-library/Windows-x86/src/com/quetwo/Arduino/ArduinoConnectorEvent.as b/as3-library/Windows-x86/src/com/quetwo/Arduino/ArduinoConnectorEvent.as deleted file mode 100644 index 0ab46e1..0000000 --- a/as3-library/Windows-x86/src/com/quetwo/Arduino/ArduinoConnectorEvent.as +++ /dev/null @@ -1,38 +0,0 @@ -/* -* Version: MPL 1.1 -* -* The contents of this file are subject to the Mozilla Public License Version -* 1.1 (the "License"); you may not use this file except in compliance with -* the License. You may obtain a copy of the License at -* http://www.mozilla.org/MPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is ArduinoConnector.as -* -* The Initial Developer of the Original Code is Nicholas Kwiatkowski. -* Portions created by the Initial Developer are Copyright (C) 2011 -* the Initial Developer. All Rights Reserved. -* -*/ - -package com.quetwo.Arduino -{ - import flash.events.ProgressEvent; - - public class ArduinoConnectorEvent extends ProgressEvent - { - - public const SOCKET_DATA:String = "socketData"; - public const PROGRESS:String = "progress"; - - public function ArduinoConnectorEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false) - { - super(type, bubbles, cancelable); - } - - } -} \ No newline at end of file diff --git a/as3-library/Windows-x86/src/main/resources/extension.xml b/as3-library/Windows-x86/src/main/resources/extension.xml deleted file mode 100644 index 8dcc9f0..0000000 --- a/as3-library/Windows-x86/src/main/resources/extension.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - com.quetwo.Arduino.ArduinoConnector - Arduino Connector - This work is licensed under Mozilla Public License Version 1.1, Copyright 2012 - 1.2.0 - - - - libSerialANE.dll - SerialANEinitializer - SerialANEfinalizer - - - - - SerialANE.framework - SerialANEinitializer - SerialANEfinalizer - - - - \ No newline at end of file diff --git a/binaries/ArduinoConnector.ane b/binaries/ArduinoConnector.ane deleted file mode 100644 index a7eb22f..0000000 Binary files a/binaries/ArduinoConnector.ane and /dev/null differ diff --git a/native-extension/MacOS-x86/.project b/native-extension/MacOS-x86/.project deleted file mode 100644 index e40539e..0000000 --- a/native-extension/MacOS-x86/.project +++ /dev/null @@ -1,11 +0,0 @@ - - - SerialANE-MacOSX - - - - - - - - diff --git a/native-extension/MacOS-x86/English.lproj/InfoPlist.strings b/native-extension/MacOS-x86/English.lproj/InfoPlist.strings deleted file mode 100644 index 88f65cf..0000000 --- a/native-extension/MacOS-x86/English.lproj/InfoPlist.strings +++ /dev/null @@ -1,2 +0,0 @@ -/* Localized versions of Info.plist keys */ - diff --git a/native-extension/MacOS-x86/Info.plist b/native-extension/MacOS-x86/Info.plist deleted file mode 100644 index 49168a1..0000000 --- a/native-extension/MacOS-x86/Info.plist +++ /dev/null @@ -1,28 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleName - ${PRODUCT_NAME} - CFBundleIconFile - - CFBundleIdentifier - com.yourcompany.${PRODUCT_NAME:rfc1034Identifier} - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1 - CFBundleShortVersionString - 1.0 - NSPrincipalClass - - - diff --git a/native-extension/MacOS-x86/SerialANE.c b/native-extension/MacOS-x86/SerialANE.c deleted file mode 100755 index bc2d1de..0000000 --- a/native-extension/MacOS-x86/SerialANE.c +++ /dev/null @@ -1,373 +0,0 @@ -/* - * Version: MPL 1.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is SerialANE.c - * - * The Initial Developer of the Original Code is Nicholas Kwiatkowski. - * Portions created by the Initial Developer are Copyright (C) 2011 - * the Initial Developer. All Rights Reserved. - * - * The Assistant Developer is Ellis Elkins on behalf of DirectAthletics. - * Portions created by the Assistant Developer are Copyright (C) 2013 - * DirectAthletics. All Rights Reserved. - * - */ - -#include "SerialANE.h" - -#include "stdio.h" -#include "pthread.h" -#include "stdlib.h" -#include "stdint.h" -#include "String.h" -#include "rs232.h" - - -#ifdef _WIN32 - #include "FlashRuntimeExtensions.h" - uint32_t isSupportedInOS = 0; -#else - #include - uint32_t isSupportedInOS = 1; -#endif - - FREContext dllContext; - pthread_t ptrToThread; - unsigned char buffer[4096]; - int bufferSize; - unsigned char comPort[1024]; - int baud; - int sentEvent; - const int fileHandle = 1; - - pthread_mutex_t safety = PTHREAD_MUTEX_INITIALIZER; - -void multiplatformSleep(int time) -{ -#ifdef _WIN32 - Sleep(time); // windows delay timer -#else - usleep(time * 1000); // POSIX/Unix/Mac delay timer -#endif -} - - -void *pollForData() -{ - - unsigned char incomingBuffer[4096]; - int incomingBufferSize = 0; - - while(1) - { - multiplatformSleep(10); // used only for testing. I want manageable loops, not crazy ones. - incomingBufferSize = PollComport(fileHandle,incomingBuffer,4095); - if (incomingBufferSize > 0) - { - pthread_mutex_lock( &safety ); - memcpy(buffer+bufferSize,incomingBuffer,incomingBufferSize); - bufferSize = bufferSize + incomingBufferSize; - buffer[bufferSize] = 0; - pthread_mutex_unlock( &safety); - } - - if (sentEvent == 0 && bufferSize > 0) - { - sentEvent = 1; - FREDispatchStatusEventAsync(dllContext, (uint8_t*) "bufferHasData", (const uint8_t*) "INFO"); - } - } - return NULL; -} - - -FREObject isSupported(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - - FREObject result; - FRENewObjectFromBool( isSupportedInOS, &result); - return result; -} - -FREObject getBytesAsArray(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - - FRENewObject((const uint8_t*) "Array", 0, NULL, &result, NULL); - FRESetArrayLength(result,bufferSize-1); - - FREObject myChar; - int i; - - pthread_mutex_lock( &safety); - for(i=0; i < bufferSize; i++) - { - FRENewObjectFromUTF8(1,(unsigned char *) buffer+i, &myChar); - FRESetArrayElementAt(result, i, myChar); - } - - bufferSize=0; - sentEvent = 0; - pthread_mutex_unlock( &safety); - - return result; -} - -FREObject getBytesAsString(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - - pthread_mutex_lock( &safety); - FRENewObjectFromUTF8(bufferSize,(unsigned char *) buffer, &result); - bufferSize=0; - sentEvent = 0; - pthread_mutex_unlock( &safety); - - return result; -} - -FREObject getBytesAsByteArray(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - FREByteArray incomingBytes; - - FREAcquireByteArray(argv[0], &incomingBytes); - - pthread_mutex_lock( &safety); - memcpy(incomingBytes.bytes,buffer,bufferSize); - FRENewObjectFromInt32(bufferSize, &result); - bufferSize=0; - sentEvent = 0; - pthread_mutex_unlock( &safety); - - FREReleaseByteArray( &incomingBytes); - - return result; -} - -FREObject getByte(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - - pthread_mutex_lock( &safety); - FRENewObjectFromUint32(buffer[0], &result); - memcpy(buffer,buffer+1,bufferSize-1); - bufferSize--; - if (bufferSize == 0) - { - sentEvent = 0; - } - pthread_mutex_unlock( &safety); - - return result; -} - -FREObject getAvailableBytes(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - pthread_mutex_lock( &safety); - FRENewObjectFromInt32(bufferSize, &result); - pthread_mutex_unlock( &safety); - return result; -} - -FREObject sendByte(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - - uint32_t dataToSend; - int sendResult = 0; - - FREGetObjectAsUint32(argv[0], &dataToSend); - - sendResult = SendByte(fileHandle, (unsigned char) dataToSend); - - if (sendResult == -1) - { - FRENewObjectFromBool(0, &result); - } - else - { - FRENewObjectFromBool(1, &result); - } - return result; -} - -FREObject sendString(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - - uint32_t lengthToSend; - const uint8_t *dataToSend; - int sendResult = 0; - - FREGetObjectAsUTF8(argv[0], &lengthToSend, &dataToSend); - - sendResult = SendBuf(fileHandle, (unsigned char *)dataToSend, lengthToSend); - - if (sendResult == -1) - { - FRENewObjectFromBool(0, &result); - } - else - { - FRENewObjectFromBool(1, &result); - } - return result; -} - -FREObject sendByteArray(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - FREByteArray dataToSend; - int sendResult = 0; - - FREAcquireByteArray(argv[0], &dataToSend); - - sendResult = SendBuf(fileHandle, (unsigned char *)&dataToSend.bytes, dataToSend.length); - - FREReleaseByteArray(argv[0]); - - if (sendResult == -1) - { - FRENewObjectFromBool(0, &result); - } - else - { - FRENewObjectFromBool(1, &result); - } - return result; -} - -FREObject setupPort(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - int comPortError = 0; - uint comLength; - const unsigned char *localComPort; - int useDtrControl; - - FREGetObjectAsUTF8(argv[0], &comLength, &localComPort); - FREGetObjectAsInt32(argv[1], &baud); - FREGetObjectAsInt32(argv[2], &useDtrControl); - - memcpy(comPort, localComPort, comLength); - - bufferSize = 0; - - comPortError = OpenComport(comPort,baud, fileHandle, useDtrControl); - - if (comPortError == 0) - { - multiplatformSleep(100); - pthread_create(&ptrToThread, NULL, pollForData, NULL); - FRENewObjectFromBool(1, &result); - } - else - { - FRENewObjectFromBool(0, &result); - } - - return result; - -} - -FREObject closePort(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - - CloseComport(fileHandle); - - FRENewObjectFromBool(1, &result); - return result; - -} - -void contextInitializer(void* extData, const uint8_t* ctxType, FREContext ctx, uint32_t* numFunctions, const FRENamedFunction** functions) -{ - *numFunctions = 11; - FRENamedFunction* func = (FRENamedFunction*) malloc(sizeof(FRENamedFunction) * (*numFunctions)); - - func[0].name = (const uint8_t*) "isSupported"; - func[0].functionData = NULL; - func[0].function = &isSupported; - - func[1].name = (const uint8_t*) "getBytesAsArray"; - func[1].functionData = NULL; - func[1].function = &getBytesAsArray; - - func[2].name = (const uint8_t*) "sendString"; - func[2].functionData = NULL; - func[2].function = &sendString; - - func[3].name = (const uint8_t*) "setupPort"; - func[3].functionData = NULL; - func[3].function = &setupPort; - - func[4].name = (const uint8_t*) "getBytesAsString"; - func[4].functionData = NULL; - func[4].function = &getBytesAsString; - - func[5].name = (const uint8_t*) "sendByteArray"; - func[5].functionData = NULL; - func[5].function = &sendByteArray; - - func[6].name = (const uint8_t*) "getBytesAsByteArray"; - func[6].functionData = NULL; - func[6].function = &getBytesAsByteArray; - - func[7].name = (const uint8_t*) "getByte"; - func[7].functionData = NULL; - func[7].function = &getByte; - - func[8].name = (const uint8_t*) "sendByte"; - func[8].functionData = NULL; - func[8].function = &sendByte; - - func[9].name = (const uint8_t*) "getAvailableBytes"; - func[9].functionData = NULL; - func[9].function = &getAvailableBytes; - - func[10].name = (const uint8_t*) "closePort"; - func[10].functionData = NULL; - func[10].function = &getAvailableBytes; - - *functions = func; - - dllContext = ctx; - sentEvent = 0; -} - -void contextFinalizer(FREContext ctx) -{ - pthread_cancel(ptrToThread); - CloseComport(fileHandle); - return; -} - -void SerialANEinitializer(void** extData, FREContextInitializer* ctxInitializer, FREContextFinalizer* ctxFinalizer) -{ - *ctxInitializer = &contextInitializer; - *ctxFinalizer = &contextFinalizer; -} - -void SerialANEfinalizer(void* extData) -{ - FREContext nullCTX; - nullCTX = 0; - - contextFinalizer(nullCTX); - - return; -} - diff --git a/native-extension/MacOS-x86/SerialANE.h b/native-extension/MacOS-x86/SerialANE.h deleted file mode 100644 index af0ddd2..0000000 --- a/native-extension/MacOS-x86/SerialANE.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Version: MPL 1.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is SerialANE.h - * - * The Initial Developer of the Original Code is Nicholas Kwiatkowski. - * Portions created by the Initial Developer are Copyright (C) 2011 - * the Initial Developer. All Rights Reserved. - * - */ - -#define EXPORT __attribute__((visibility("default"))) - -#ifndef SERIALANE_H_ -#define SERIALANE_H_ - -#include - -EXPORT -void SerialANEinitializer(void** extData, FREContextInitializer* ctxInitializer, FREContextFinalizer* ctxFinalizer); - -EXPORT -void SerialANEfinalizer(void* extData); - -#endif /* SERIALANE_H_ */ diff --git a/native-extension/MacOS-x86/SerialANE.xcodeproj/project.pbxproj b/native-extension/MacOS-x86/SerialANE.xcodeproj/project.pbxproj deleted file mode 100644 index cc65e6d..0000000 --- a/native-extension/MacOS-x86/SerialANE.xcodeproj/project.pbxproj +++ /dev/null @@ -1,337 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 45; - objects = { - -/* Begin PBXBuildFile section */ - 768FF59A1480050400A0EF77 /* Adobe AIR.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 768FF5991480050400A0EF77 /* Adobe AIR.framework */; }; - 768FF5B11480087700A0EF77 /* SerialANE.h in Headers */ = {isa = PBXBuildFile; fileRef = 768FF5AF1480087700A0EF77 /* SerialANE.h */; }; - 768FF6221480200C00A0EF77 /* SerialANE.c in Sources */ = {isa = PBXBuildFile; fileRef = 768FF6211480200C00A0EF77 /* SerialANE.c */; }; - 768FF6241480201900A0EF77 /* rs232.c in Sources */ = {isa = PBXBuildFile; fileRef = 768FF6231480201900A0EF77 /* rs232.c */; }; - 768FF6261480202300A0EF77 /* rs232.h in Headers */ = {isa = PBXBuildFile; fileRef = 768FF6251480202300A0EF77 /* rs232.h */; }; - 8DC2EF530486A6940098B216 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C1666FE841158C02AAC07 /* InfoPlist.strings */; }; - 8DC2EF570486A6940098B216 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7B1FEA5585E11CA2CBB /* Cocoa.framework */; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - 0867D69BFE84028FC02AAC07 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; - 0867D6A5FE840307C02AAC07 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; - 089C1667FE841158C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; - 1058C7B1FEA5585E11CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; - 32DBCF5E0370ADEE00C91783 /* SerialANE_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SerialANE_Prefix.pch; sourceTree = ""; }; - 768FF5991480050400A0EF77 /* Adobe AIR.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Adobe AIR.framework"; path = "/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac/Adobe AIR.framework"; sourceTree = ""; }; - 768FF5AF1480087700A0EF77 /* SerialANE.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SerialANE.h; sourceTree = ""; }; - 768FF6211480200C00A0EF77 /* SerialANE.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SerialANE.c; sourceTree = ""; }; - 768FF6231480201900A0EF77 /* rs232.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rs232.c; sourceTree = ""; }; - 768FF6251480202300A0EF77 /* rs232.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rs232.h; sourceTree = ""; }; - 8DC2EF5A0486A6940098B216 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 8DC2EF5B0486A6940098B216 /* SerialANE.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SerialANE.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D2F7E79907B2D74100F64583 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = /System/Library/Frameworks/CoreData.framework; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 8DC2EF560486A6940098B216 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 8DC2EF570486A6940098B216 /* Cocoa.framework in Frameworks */, - 768FF59A1480050400A0EF77 /* Adobe AIR.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 034768DFFF38A50411DB9C8B /* Products */ = { - isa = PBXGroup; - children = ( - 8DC2EF5B0486A6940098B216 /* SerialANE.framework */, - ); - name = Products; - sourceTree = ""; - }; - 0867D691FE84028FC02AAC07 /* SerialANE */ = { - isa = PBXGroup; - children = ( - 08FB77AEFE84172EC02AAC07 /* Classes */, - 32C88DFF0371C24200C91783 /* Other Sources */, - 089C1665FE841158C02AAC07 /* Resources */, - 0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */, - 034768DFFF38A50411DB9C8B /* Products */, - ); - name = SerialANE; - sourceTree = ""; - }; - 0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */ = { - isa = PBXGroup; - children = ( - 1058C7B0FEA5585E11CA2CBB /* Linked Frameworks */, - 1058C7B2FEA5585E11CA2CBB /* Other Frameworks */, - ); - name = "External Frameworks and Libraries"; - sourceTree = ""; - }; - 089C1665FE841158C02AAC07 /* Resources */ = { - isa = PBXGroup; - children = ( - 8DC2EF5A0486A6940098B216 /* Info.plist */, - 089C1666FE841158C02AAC07 /* InfoPlist.strings */, - ); - name = Resources; - sourceTree = ""; - }; - 08FB77AEFE84172EC02AAC07 /* Classes */ = { - isa = PBXGroup; - children = ( - 768FF6231480201900A0EF77 /* rs232.c */, - 768FF6211480200C00A0EF77 /* SerialANE.c */, - ); - name = Classes; - sourceTree = ""; - }; - 1058C7B0FEA5585E11CA2CBB /* Linked Frameworks */ = { - isa = PBXGroup; - children = ( - 768FF5991480050400A0EF77 /* Adobe AIR.framework */, - 1058C7B1FEA5585E11CA2CBB /* Cocoa.framework */, - ); - name = "Linked Frameworks"; - sourceTree = ""; - }; - 1058C7B2FEA5585E11CA2CBB /* Other Frameworks */ = { - isa = PBXGroup; - children = ( - 0867D6A5FE840307C02AAC07 /* AppKit.framework */, - D2F7E79907B2D74100F64583 /* CoreData.framework */, - 0867D69BFE84028FC02AAC07 /* Foundation.framework */, - ); - name = "Other Frameworks"; - sourceTree = ""; - }; - 32C88DFF0371C24200C91783 /* Other Sources */ = { - isa = PBXGroup; - children = ( - 768FF5AF1480087700A0EF77 /* SerialANE.h */, - 768FF6251480202300A0EF77 /* rs232.h */, - 32DBCF5E0370ADEE00C91783 /* SerialANE_Prefix.pch */, - ); - name = "Other Sources"; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 8DC2EF500486A6940098B216 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 768FF5B11480087700A0EF77 /* SerialANE.h in Headers */, - 768FF6261480202300A0EF77 /* rs232.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 8DC2EF4F0486A6940098B216 /* SerialANE.framework */ = { - isa = PBXNativeTarget; - buildConfigurationList = 1DEB91AD08733DA50010E9CD /* Build configuration list for PBXNativeTarget "SerialANE.framework" */; - buildPhases = ( - 8DC2EF500486A6940098B216 /* Headers */, - 8DC2EF520486A6940098B216 /* Resources */, - 8DC2EF540486A6940098B216 /* Sources */, - 8DC2EF560486A6940098B216 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = SerialANE.framework; - productInstallPath = "$(HOME)/Library/Frameworks"; - productName = SerialANE; - productReference = 8DC2EF5B0486A6940098B216 /* SerialANE.framework */; - productType = "com.apple.product-type.framework"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 0867D690FE84028FC02AAC07 /* Project object */ = { - isa = PBXProject; - attributes = { - ORGANIZATIONNAME = "Nick Kwiatkowski"; - }; - buildConfigurationList = 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "SerialANE" */; - compatibilityVersion = "Xcode 3.1"; - hasScannedForEncodings = 1; - mainGroup = 0867D691FE84028FC02AAC07 /* SerialANE */; - productRefGroup = 034768DFFF38A50411DB9C8B /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 8DC2EF4F0486A6940098B216 /* SerialANE.framework */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 8DC2EF520486A6940098B216 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 8DC2EF530486A6940098B216 /* InfoPlist.strings in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 8DC2EF540486A6940098B216 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 768FF6221480200C00A0EF77 /* SerialANE.c in Sources */, - 768FF6241480201900A0EF77 /* rs232.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXVariantGroup section */ - 089C1666FE841158C02AAC07 /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - 089C1667FE841158C02AAC07 /* English */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 1DEB91AE08733DA50010E9CD /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = NO; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SYSTEM_APPS_DIR)/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac\"", - ); - FRAMEWORK_VERSION = A; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = SerialANE_Prefix.pch; - GCC_VERSION = 4.2; - INFOPLIST_FILE = Info.plist; - INSTALL_PATH = "$(HOME)/Library/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "/Applications/Adobe\\ Flash\\ Builder\\ 4.5/sdks/4.5.1/runtimes/air/mac"; - OTHER_CFLAGS = "-fvisibility=hidden"; - OTHER_LDFLAGS = ( - "-flat_namespace", - "-weak_framework", - "\"Adobe AIR\"", - ); - PRODUCT_NAME = SerialANE; - SDKROOT = macosx10.5; - WRAPPER_EXTENSION = framework; - }; - name = Debug; - }; - 1DEB91AF08733DA50010E9CD /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "/Applications/Adobe\\ Flash\\ Builder\\ 4.6/sdks/4.6.0/runtimes/air/mac/", - ); - FRAMEWORK_VERSION = A; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = SerialANE_Prefix.pch; - INFOPLIST_FILE = Info.plist; - INSTALL_PATH = "$(HOME)/Library/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "@executable_path/../runtimes/air/mac @executable_path/../Frameworks /Library/Frameworks"; - LIBRARY_SEARCH_PATHS = ( - "/Library/Frameworks/Adobe\\ AIR.framework/Versions/1.0", - ); - ONLY_ACTIVE_ARCH = YES; - OTHER_CFLAGS = "-fvisibility=hidden"; - OTHER_LDFLAGS = ( - "-flat_namespace", - "-weak_framework", - "\"Adobe AIR\"", - ); - PRODUCT_NAME = SerialANE; - SDKROOT = macosx10.5; - WRAPPER_EXTENSION = framework; - }; - name = Release; - }; - 1DEB91B208733DA50010E9CD /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - ONLY_ACTIVE_ARCH = YES; - PREBINDING = NO; - SDKROOT = macosx10.6; - }; - name = Debug; - }; - 1DEB91B308733DA50010E9CD /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - PREBINDING = NO; - SDKROOT = macosx10.6; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 1DEB91AD08733DA50010E9CD /* Build configuration list for PBXNativeTarget "SerialANE.framework" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1DEB91AE08733DA50010E9CD /* Debug */, - 1DEB91AF08733DA50010E9CD /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "SerialANE" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1DEB91B208733DA50010E9CD /* Debug */, - 1DEB91B308733DA50010E9CD /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 0867D690FE84028FC02AAC07 /* Project object */; -} diff --git a/native-extension/MacOS-x86/SerialANE.xcodeproj/quetwo.mode1v3 b/native-extension/MacOS-x86/SerialANE.xcodeproj/quetwo.mode1v3 deleted file mode 100644 index d1e3037..0000000 --- a/native-extension/MacOS-x86/SerialANE.xcodeproj/quetwo.mode1v3 +++ /dev/null @@ -1,1385 +0,0 @@ - - - - - ActivePerspectiveName - Project - AllowedModules - - - BundleLoadPath - - MaxInstances - n - Module - PBXSmartGroupTreeModule - Name - Groups and Files Outline View - - - BundleLoadPath - - MaxInstances - n - Module - PBXNavigatorGroup - Name - Editor - - - BundleLoadPath - - MaxInstances - n - Module - XCTaskListModule - Name - Task List - - - BundleLoadPath - - MaxInstances - n - Module - XCDetailModule - Name - File and Smart Group Detail Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXBuildResultsModule - Name - Detailed Build Results Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXProjectFindModule - Name - Project Batch Find Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCProjectFormatConflictsModule - Name - Project Format Conflicts List - - - BundleLoadPath - - MaxInstances - n - Module - PBXBookmarksModule - Name - Bookmarks Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXClassBrowserModule - Name - Class Browser - - - BundleLoadPath - - MaxInstances - n - Module - PBXCVSModule - Name - Source Code Control Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXDebugBreakpointsModule - Name - Debug Breakpoints Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCDockableInspector - Name - Inspector - - - BundleLoadPath - - MaxInstances - n - Module - PBXOpenQuicklyModule - Name - Open Quickly Tool - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugSessionModule - Name - Debugger - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugCLIModule - Name - Debug Console - - - BundleLoadPath - - MaxInstances - n - Module - XCSnapshotModule - Name - Snapshots Tool - - - BundlePath - /Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources - Description - DefaultDescriptionKey - DockingSystemVisible - - Extension - mode1v3 - FavBarConfig - - PBXProjectModuleGUID - 768FF5A7148005EF00A0EF77 - XCBarModuleItemNames - - XCBarModuleItems - - - FirstTimeWindowDisplayed - - Identifier - com.apple.perspectives.project.mode1v3 - MajorVersion - 33 - MinorVersion - 0 - Name - Default - Notifications - - OpenEditors - - PerspectiveWidths - - -1 - -1 - - Perspectives - - - ChosenToolbarItems - - active-combo-popup - action - NSToolbarFlexibleSpaceItem - debugger-enable-breakpoints - build-and-go - com.apple.ide.PBXToolbarStopButton - get-info - NSToolbarFlexibleSpaceItem - com.apple.pbx.toolbar.searchfield - - ControllerClassBaseName - - IconName - WindowOfProjectWithEditor - Identifier - perspective.project - IsVertical - - Layout - - - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - 1CC0EA4004350EF90044410B - 1CC0EA4004350EF90041110B - - PBXProjectModuleGUID - 1CE0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 186 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 0867D691FE84028FC02AAC07 - 08FB77AEFE84172EC02AAC07 - 32C88DFF0371C24200C91783 - 1C37FBAC04509CD000000102 - 1C37FABC05509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 2 - 1 - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {186, 445}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - - XCSharingToken - com.apple.Xcode.GFSharingToken - - GeometryConfiguration - - Frame - {{0, 0}, {203, 463}} - GroupTreeTableConfiguration - - MainColumn - 186 - - RubberWindowFrame - 29 343 788 504 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 203pt - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CE0B20306471E060097A5F4 - PBXProjectModuleLabel - - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CE0B20406471E060097A5F4 - PBXProjectModuleLabel - - - SplitCount - 1 - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {580, 0}} - RubberWindowFrame - 29 343 788 504 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - 1CE0B20506471E060097A5F4 - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{0, 5}, {580, 458}} - RubberWindowFrame - 29 343 788 504 0 0 1440 878 - - Module - XCDetailModule - Proportion - 458pt - - - Proportion - 580pt - - - Name - Project - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - XCModuleDock - PBXNavigatorGroup - XCDetailModule - - TableOfContents - - 76B1527914812A9800CE098F - 1CE0B1FE06471DED0097A5F4 - 76B1527A14812A9800CE098F - 1CE0B20306471E060097A5F4 - 1CE0B20506471E060097A5F4 - - ToolbarConfigUserDefaultsMinorVersion - 2 - ToolbarConfiguration - xcode.toolbar.config.defaultV3 - - - ControllerClassBaseName - - IconName - WindowOfProject - Identifier - perspective.morph - IsVertical - 0 - Layout - - - BecomeActive - 1 - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C08E77C0454961000C914BD - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - 1CC0EA4004350EF90044410B - 1CC0EA4004350EF90041110B - - PBXProjectModuleGUID - 11E0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 186 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 29B97314FDCFA39411CA2CEA - 1C37FABC05509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {186, 337}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - 1 - XCSharingToken - com.apple.Xcode.GFSharingToken - - GeometryConfiguration - - Frame - {{0, 0}, {203, 355}} - GroupTreeTableConfiguration - - MainColumn - 186 - - RubberWindowFrame - 373 269 690 397 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 100% - - - Name - Morph - PreferredWidth - 300 - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - - TableOfContents - - 11E0B1FE06471DED0097A5F4 - - ToolbarConfiguration - xcode.toolbar.config.default.shortV3 - - - PerspectivesBarVisible - - ShelfIsVisible - - SourceDescription - file at '/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/XCPerspectivesSpecificationMode1.xcperspec' - StatusbarIsVisible - - TimeStamp - 0.0 - ToolbarConfigUserDefaultsMinorVersion - 2 - ToolbarDisplayMode - 1 - ToolbarIsVisible - - ToolbarSizeMode - 1 - Type - Perspectives - UpdateMessage - The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'? - WindowJustification - 5 - WindowOrderList - - 76B1527314812A5B00CE098F - 768FF5A8148005EF00A0EF77 - /Users/quetwo/Documents/SerialANE/SerialANE.xcodeproj - - WindowString - 29 343 788 504 0 0 1440 878 - WindowToolsV3 - - - FirstTimeWindowDisplayed - - Identifier - windowTool.build - IsVertical - - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528F0623707200166675 - PBXProjectModuleLabel - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {486, 477}} - RubberWindowFrame - 946 113 486 759 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 477pt - - - ContentConfiguration - - PBXProjectModuleGUID - XCMainBuildResultsModuleGUID - PBXProjectModuleLabel - Build Results - XCBuildResultsTrigger_Collapse - 1021 - XCBuildResultsTrigger_Open - 1011 - - GeometryConfiguration - - Frame - {{0, 482}, {486, 236}} - RubberWindowFrame - 946 113 486 759 0 0 1440 878 - - Module - PBXBuildResultsModule - Proportion - 236pt - - - Proportion - 718pt - - - Name - Build Results - ServiceClasses - - PBXBuildResultsModule - - StatusbarIsVisible - - TableOfContents - - 768FF5A8148005EF00A0EF77 - 76B1527B14812A9800CE098F - 1CD0528F0623707200166675 - XCMainBuildResultsModuleGUID - - ToolbarConfiguration - xcode.toolbar.config.buildV3 - WindowContentMinSize - 486 300 - WindowString - 946 113 486 759 0 0 1440 878 - WindowToolGUID - 768FF5A8148005EF00A0EF77 - WindowToolIsVisible - - - - FirstTimeWindowDisplayed - - Identifier - windowTool.debugger - IsVertical - - Layout - - - Dock - - - ContentConfiguration - - Debugger - - HorizontalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {316, 185}} - {{316, 0}, {378, 185}} - - - VerticalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {694, 185}} - {{0, 185}, {694, 196}} - - - - LauncherConfigVersion - 8 - PBXProjectModuleGUID - 1C162984064C10D400B95A72 - PBXProjectModuleLabel - Debug - GLUTExamples (Underwater) - - GeometryConfiguration - - DebugConsoleVisible - None - DebugConsoleWindowFrame - {{200, 200}, {500, 300}} - DebugSTDIOWindowFrame - {{200, 200}, {500, 300}} - Frame - {{0, 0}, {694, 381}} - PBXDebugSessionStackFrameViewKey - - DebugVariablesTableConfiguration - - Name - 120 - Value - 85 - Summary - 148 - - Frame - {{316, 0}, {378, 185}} - RubberWindowFrame - 128 344 694 422 0 0 1440 878 - - RubberWindowFrame - 128 344 694 422 0 0 1440 878 - - Module - PBXDebugSessionModule - Proportion - 381pt - - - Proportion - 381pt - - - Name - Debugger - ServiceClasses - - PBXDebugSessionModule - - StatusbarIsVisible - - TableOfContents - - 1CD10A99069EF8BA00B06720 - 768FF61714801F7000A0EF77 - 1C162984064C10D400B95A72 - 768FF61814801F7000A0EF77 - 768FF61914801F7000A0EF77 - 768FF61A14801F7000A0EF77 - 768FF61B14801F7000A0EF77 - 768FF61C14801F7000A0EF77 - - ToolbarConfiguration - xcode.toolbar.config.debugV3 - WindowString - 128 344 694 422 0 0 1440 878 - WindowToolGUID - 1CD10A99069EF8BA00B06720 - WindowToolIsVisible - - - - Identifier - windowTool.find - Layout - - - Dock - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CDD528C0622207200134675 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CD0528D0623707200166675 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {781, 167}} - RubberWindowFrame - 62 385 781 470 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 781pt - - - Proportion - 50% - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528E0623707200166675 - PBXProjectModuleLabel - Project Find - - GeometryConfiguration - - Frame - {{8, 0}, {773, 254}} - RubberWindowFrame - 62 385 781 470 0 0 1440 878 - - Module - PBXProjectFindModule - Proportion - 50% - - - Proportion - 428pt - - - Name - Project Find - ServiceClasses - - PBXProjectFindModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C530D57069F1CE1000CFCEE - 1C530D58069F1CE1000CFCEE - 1C530D59069F1CE1000CFCEE - 1CDD528C0622207200134675 - 1C530D5A069F1CE1000CFCEE - 1CE0B1FE06471DED0097A5F4 - 1CD0528E0623707200166675 - - WindowString - 62 385 781 470 0 0 1440 878 - WindowToolGUID - 1C530D57069F1CE1000CFCEE - WindowToolIsVisible - 0 - - - Identifier - MENUSEPARATOR - - - Identifier - windowTool.debuggerConsole - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAAC065D492600B07095 - PBXProjectModuleLabel - Debugger Console - - GeometryConfiguration - - Frame - {{0, 0}, {650, 250}} - RubberWindowFrame - 516 632 650 250 0 0 1680 1027 - - Module - PBXDebugCLIModule - Proportion - 209pt - - - Proportion - 209pt - - - Name - Debugger Console - ServiceClasses - - PBXDebugCLIModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C78EAAD065D492600B07095 - 1C78EAAE065D492600B07095 - 1C78EAAC065D492600B07095 - - ToolbarConfiguration - xcode.toolbar.config.consoleV3 - WindowString - 650 41 650 250 0 0 1280 1002 - WindowToolGUID - 1C78EAAD065D492600B07095 - WindowToolIsVisible - 0 - - - Identifier - windowTool.snapshots - Layout - - - Dock - - - Module - XCSnapshotModule - Proportion - 100% - - - Proportion - 100% - - - Name - Snapshots - ServiceClasses - - XCSnapshotModule - - StatusbarIsVisible - Yes - ToolbarConfiguration - xcode.toolbar.config.snapshots - WindowString - 315 824 300 550 0 0 1440 878 - WindowToolIsVisible - Yes - - - Identifier - windowTool.scm - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAB2065D492600B07095 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1C78EAB3065D492600B07095 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {452, 0}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1CD052920623707200166675 - PBXProjectModuleLabel - SCM - - GeometryConfiguration - - ConsoleFrame - {{0, 259}, {452, 0}} - Frame - {{0, 7}, {452, 259}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - TableConfiguration - - Status - 30 - FileName - 199 - Path - 197.0950012207031 - - TableFrame - {{0, 0}, {452, 250}} - - Module - PBXCVSModule - Proportion - 262pt - - - Proportion - 266pt - - - Name - SCM - ServiceClasses - - PBXCVSModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C78EAB4065D492600B07095 - 1C78EAB5065D492600B07095 - 1C78EAB2065D492600B07095 - 1CD052920623707200166675 - - ToolbarConfiguration - xcode.toolbar.config.scm - WindowString - 743 379 452 308 0 0 1280 1002 - - - Identifier - windowTool.breakpoints - IsVertical - 0 - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C77FABC04509CD000000102 - - PBXProjectModuleGUID - 1CE0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - no - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 168 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 1C77FABC04509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {168, 350}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - 0 - - GeometryConfiguration - - Frame - {{0, 0}, {185, 368}} - GroupTreeTableConfiguration - - MainColumn - 168 - - RubberWindowFrame - 315 424 744 409 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 185pt - - - ContentConfiguration - - PBXProjectModuleGUID - 1CA1AED706398EBD00589147 - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{190, 0}, {554, 368}} - RubberWindowFrame - 315 424 744 409 0 0 1440 878 - - Module - XCDetailModule - Proportion - 554pt - - - Proportion - 368pt - - - MajorVersion - 3 - MinorVersion - 0 - Name - Breakpoints - ServiceClasses - - PBXSmartGroupTreeModule - XCDetailModule - - StatusbarIsVisible - 1 - TableOfContents - - 1CDDB66807F98D9800BB5817 - 1CDDB66907F98D9800BB5817 - 1CE0B1FE06471DED0097A5F4 - 1CA1AED706398EBD00589147 - - ToolbarConfiguration - xcode.toolbar.config.breakpointsV3 - WindowString - 315 424 744 409 0 0 1440 878 - WindowToolGUID - 1CDDB66807F98D9800BB5817 - WindowToolIsVisible - 1 - - - Identifier - windowTool.debugAnimator - Layout - - - Dock - - - Module - PBXNavigatorGroup - Proportion - 100% - - - Proportion - 100% - - - Name - Debug Visualizer - ServiceClasses - - PBXNavigatorGroup - - StatusbarIsVisible - 1 - ToolbarConfiguration - xcode.toolbar.config.debugAnimatorV3 - WindowString - 100 100 700 500 0 0 1280 1002 - - - Identifier - windowTool.bookmarks - Layout - - - Dock - - - Module - PBXBookmarksModule - Proportion - 100% - - - Proportion - 100% - - - Name - Bookmarks - ServiceClasses - - PBXBookmarksModule - - StatusbarIsVisible - 0 - WindowString - 538 42 401 187 0 0 1280 1002 - - - Identifier - windowTool.projectFormatConflicts - Layout - - - Dock - - - Module - XCProjectFormatConflictsModule - Proportion - 100% - - - Proportion - 100% - - - Name - Project Format Conflicts - ServiceClasses - - XCProjectFormatConflictsModule - - StatusbarIsVisible - 0 - WindowContentMinSize - 450 300 - WindowString - 50 850 472 307 0 0 1440 877 - - - Identifier - windowTool.classBrowser - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - OptionsSetName - Hierarchy, all classes - PBXProjectModuleGUID - 1CA6456E063B45B4001379D8 - PBXProjectModuleLabel - Class Browser - NSObject - - GeometryConfiguration - - ClassesFrame - {{0, 0}, {374, 96}} - ClassesTreeTableConfiguration - - PBXClassNameColumnIdentifier - 208 - PBXClassBookColumnIdentifier - 22 - - Frame - {{0, 0}, {630, 331}} - MembersFrame - {{0, 105}, {374, 395}} - MembersTreeTableConfiguration - - PBXMemberTypeIconColumnIdentifier - 22 - PBXMemberNameColumnIdentifier - 216 - PBXMemberTypeColumnIdentifier - 97 - PBXMemberBookColumnIdentifier - 22 - - PBXModuleWindowStatusBarHidden2 - 1 - RubberWindowFrame - 385 179 630 352 0 0 1440 878 - - Module - PBXClassBrowserModule - Proportion - 332pt - - - Proportion - 332pt - - - Name - Class Browser - ServiceClasses - - PBXClassBrowserModule - - StatusbarIsVisible - 0 - TableOfContents - - 1C0AD2AF069F1E9B00FABCE6 - 1C0AD2B0069F1E9B00FABCE6 - 1CA6456E063B45B4001379D8 - - ToolbarConfiguration - xcode.toolbar.config.classbrowser - WindowString - 385 179 630 352 0 0 1440 878 - WindowToolGUID - 1C0AD2AF069F1E9B00FABCE6 - WindowToolIsVisible - 0 - - - Identifier - windowTool.refactoring - IncludeInToolsMenu - 0 - Layout - - - Dock - - - BecomeActive - 1 - GeometryConfiguration - - Frame - {0, 0}, {500, 335} - RubberWindowFrame - {0, 0}, {500, 335} - - Module - XCRefactoringModule - Proportion - 100% - - - Proportion - 100% - - - Name - Refactoring - ServiceClasses - - XCRefactoringModule - - WindowString - 200 200 500 356 0 0 1920 1200 - - - - diff --git a/native-extension/MacOS-x86/SerialANE.xcodeproj/quetwo.pbxuser b/native-extension/MacOS-x86/SerialANE.xcodeproj/quetwo.pbxuser deleted file mode 100644 index ae28563..0000000 --- a/native-extension/MacOS-x86/SerialANE.xcodeproj/quetwo.pbxuser +++ /dev/null @@ -1,175 +0,0 @@ -// !$*UTF8*$! -{ - 0867D690FE84028FC02AAC07 /* Project object */ = { - activeBuildConfigurationName = Release; - activeTarget = 8DC2EF4F0486A6940098B216 /* SerialANE.framework */; - addToTargets = ( - 8DC2EF4F0486A6940098B216 /* SerialANE.framework */, - ); - codeSenseManager = 768FF598148004F400A0EF77 /* Code sense */; - perUserDictionary = { - PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { - PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; - PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; - PBXFileTableDataSourceColumnWidthsKey = ( - 20, - 994, - 20, - 48, - 43, - 43, - 20, - ); - PBXFileTableDataSourceColumnsKey = ( - PBXFileDataSource_FiletypeID, - PBXFileDataSource_Filename_ColumnID, - PBXFileDataSource_Built_ColumnID, - PBXFileDataSource_ObjectSize_ColumnID, - PBXFileDataSource_Errors_ColumnID, - PBXFileDataSource_Warnings_ColumnID, - PBXFileDataSource_Target_ColumnID, - ); - }; - PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = { - PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; - PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; - PBXFileTableDataSourceColumnWidthsKey = ( - 20, - 954, - 60, - 20, - 48, - 43, - 43, - ); - PBXFileTableDataSourceColumnsKey = ( - PBXFileDataSource_FiletypeID, - PBXFileDataSource_Filename_ColumnID, - PBXTargetDataSource_PrimaryAttribute, - PBXFileDataSource_Built_ColumnID, - PBXFileDataSource_ObjectSize_ColumnID, - PBXFileDataSource_Errors_ColumnID, - PBXFileDataSource_Warnings_ColumnID, - ); - }; - PBXPerProjectTemplateStateSaveDate = 354320586; - PBXWorkspaceStateSaveDate = 354320586; - }; - perUserProjectItems = { - 7688C281148AA76300F557DA /* PBXTextBookmark */ = 7688C281148AA76300F557DA /* PBXTextBookmark */; - 768A9CD21482879E009E5439 /* PBXTextBookmark */ = 768A9CD21482879E009E5439 /* PBXTextBookmark */; - 769404951491C25500746787 /* PBXTextBookmark */ = 769404951491C25500746787 /* PBXTextBookmark */; - 76F4900B151EC174006ADD64 /* XCBuildMessageTextBookmark */ = 76F4900B151EC174006ADD64 /* XCBuildMessageTextBookmark */; - 76F4901A151EC886006ADD64 /* PBXTextBookmark */ = 76F4901A151EC886006ADD64 /* PBXTextBookmark */; - }; - sourceControlManager = 768FF597148004F400A0EF77 /* Source Control */; - userBuildSettings = { - }; - }; - 32DBCF5E0370ADEE00C91783 /* SerialANE_Prefix.pch */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {822, 430}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 150}"; - sepNavWindowFrame = "{{61, 273}, {881, 558}}"; - }; - }; - 7688C281148AA76300F557DA /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 768FF6231480201900A0EF77 /* rs232.c */; - name = "rs232.c: 288"; - rLen = 0; - rLoc = 8366; - rType = 0; - vrLen = 1163; - vrLoc = 7341; - }; - 768A9CD21482879E009E5439 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 768FF6251480202300A0EF77 /* rs232.h */; - name = "rs232.h: 62"; - rLen = 0; - rLoc = 1546; - rType = 0; - vrLen = 614; - vrLoc = 1173; - }; - 768FF597148004F400A0EF77 /* Source Control */ = { - isa = PBXSourceControlManager; - fallbackIsa = XCSourceControlManager; - isSCMEnabled = 0; - scmConfiguration = { - repositoryNamesForRoots = { - "" = ""; - }; - }; - }; - 768FF598148004F400A0EF77 /* Code sense */ = { - isa = PBXCodeSenseManager; - indexTemplatePath = ""; - }; - 768FF5AF1480087700A0EF77 /* SerialANE.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {824, 468}}"; - sepNavSelRange = "{1023, 0}"; - sepNavVisRange = "{3, 1073}"; - sepNavWindowFrame = "{{176, 168}, {881, 558}}"; - }; - }; - 768FF6211480200C00A0EF77 /* SerialANE.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1172, 4680}}"; - sepNavSelRange = "{1506, 0}"; - sepNavVisRange = "{1345, 1139}"; - sepNavWindowFrame = "{{288, 49}, {881, 829}}"; - }; - }; - 768FF6231480201900A0EF77 /* rs232.c */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1172, 5031}}"; - sepNavSelRange = "{8366, 0}"; - sepNavVisRange = "{7341, 1163}"; - sepNavWindowFrame = "{{253, 49}, {881, 829}}"; - }; - }; - 768FF6251480202300A0EF77 /* rs232.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {822, 1014}}"; - sepNavSelRange = "{1546, 0}"; - sepNavVisRange = "{932, 872}"; - sepNavWindowFrame = "{{15, 49}, {881, 829}}"; - }; - }; - 769404951491C25500746787 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 768FF5AF1480087700A0EF77 /* SerialANE.h */; - name = "SerialANE.h: 31"; - rLen = 0; - rLoc = 1001; - rType = 0; - vrLen = 1058; - vrLoc = 0; - }; - 76F4900B151EC174006ADD64 /* XCBuildMessageTextBookmark */ = { - isa = PBXTextBookmark; - comments = "Compile /Users/quetwo/Documents/SerialANE/SerialANE.c"; - fRef = 768FF6211480200C00A0EF77 /* SerialANE.c */; - fallbackIsa = XCBuildMessageTextBookmark; - rLen = 0; - rLoc = 283; - rType = 1; - }; - 76F4901A151EC886006ADD64 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 768FF6211480200C00A0EF77 /* SerialANE.c */; - name = "SerialANE.c: 57"; - rLen = 0; - rLoc = 1506; - rType = 0; - vrLen = 1139; - vrLoc = 1345; - }; - 8DC2EF4F0486A6940098B216 /* SerialANE.framework */ = { - activeExec = 0; - }; -} diff --git a/native-extension/MacOS-x86/SerialANE.xcodeproj/quetwo.perspectivev3 b/native-extension/MacOS-x86/SerialANE.xcodeproj/quetwo.perspectivev3 deleted file mode 100644 index 80134d1..0000000 --- a/native-extension/MacOS-x86/SerialANE.xcodeproj/quetwo.perspectivev3 +++ /dev/null @@ -1,1501 +0,0 @@ - - - - - ActivePerspectiveName - Project - AllowedModules - - - BundleLoadPath - - MaxInstances - n - Module - PBXSmartGroupTreeModule - Name - Groups and Files Outline View - - - BundleLoadPath - - MaxInstances - n - Module - PBXNavigatorGroup - Name - Editor - - - BundleLoadPath - - MaxInstances - n - Module - XCTaskListModule - Name - Task List - - - BundleLoadPath - - MaxInstances - n - Module - XCDetailModule - Name - File and Smart Group Detail Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXBuildResultsModule - Name - Detailed Build Results Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXProjectFindModule - Name - Project Batch Find Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCProjectFormatConflictsModule - Name - Project Format Conflicts List - - - BundleLoadPath - - MaxInstances - n - Module - PBXBookmarksModule - Name - Bookmarks Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXClassBrowserModule - Name - Class Browser - - - BundleLoadPath - - MaxInstances - n - Module - PBXCVSModule - Name - Source Code Control Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXDebugBreakpointsModule - Name - Debug Breakpoints Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCDockableInspector - Name - Inspector - - - BundleLoadPath - - MaxInstances - n - Module - PBXOpenQuicklyModule - Name - Open Quickly Tool - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugSessionModule - Name - Debugger - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugCLIModule - Name - Debug Console - - - BundleLoadPath - - MaxInstances - n - Module - XCSnapshotModule - Name - Snapshots Tool - - - BundlePath - /Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources - Description - AIODescriptionKey - DockingSystemVisible - - Extension - perspectivev3 - FavBarConfig - - PBXProjectModuleGUID - 76B152F4148131C200CE098F - XCBarModuleItemNames - - XCBarModuleItems - - - FirstTimeWindowDisplayed - - Identifier - com.apple.perspectives.project.defaultV3 - MajorVersion - 34 - MinorVersion - 0 - Name - All-In-One - Notifications - - - XCObserverAutoDisconnectKey - - XCObserverDefintionKey - - XCObserverFactoryKey - XCPerspectivesSpecificationIdentifier - XCObserverGUIDKey - XCObserverProjectIdentifier - XCObserverNotificationKey - PBXStatusBuildStateMessageNotification - XCObserverTargetKey - XCMainBuildResultsModuleGUID - XCObserverTriggerKey - awakenModuleWithObserver: - XCObserverValidationKey - - - - OpenEditors - - PerspectiveWidths - - 1440 - 1440 - - Perspectives - - - ChosenToolbarItems - - XCToolbarPerspectiveControl - NSToolbarSeparatorItem - active-combo-popup - action - NSToolbarFlexibleSpaceItem - debugger-enable-breakpoints - build - clean-target - get-info - NSToolbarFlexibleSpaceItem - com.apple.pbx.toolbar.searchfield - - ControllerClassBaseName - - IconName - WindowOfProject - Identifier - perspective.project - IsVertical - - Layout - - - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - 1CC0EA4004350EF90044410B - 1CC0EA4004350EF90041110B - 1C77FABC04509CD000000102 - - PBXProjectModuleGUID - 1CA23ED40692098700951B8B - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 185 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 0867D691FE84028FC02AAC07 - 08FB77AEFE84172EC02AAC07 - 32C88DFF0371C24200C91783 - 0867D69AFE84028FC02AAC07 - 1058C7B0FEA5585E11CA2CBB - 1C37FBAC04509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 16 - 15 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {185, 715}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - - - GeometryConfiguration - - Frame - {{0, 0}, {202, 733}} - GroupTreeTableConfiguration - - MainColumn - 185 - - RubberWindowFrame - 0 104 1440 774 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 202pt - - - Dock - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - 76B1528E14812B1400CE098F - PBXProjectModuleLabel - SerialANE.c - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 76B1528F14812B1400CE098F - PBXProjectModuleLabel - SerialANE.c - _historyCapacity - 0 - bookmark - 76F4901A151EC886006ADD64 - history - - 768A9CD21482879E009E5439 - 7688C281148AA76300F557DA - 769404951491C25500746787 - 76F4900B151EC174006ADD64 - - - SplitCount - 1 - - StatusBarVisibility - - XCSharingToken - com.apple.Xcode.CommonNavigatorGroupSharingToken - - GeometryConfiguration - - Frame - {{0, 0}, {1233, 537}} - RubberWindowFrame - 0 104 1440 774 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 537pt - - - Proportion - 191pt - Tabs - - - ContentConfiguration - - PBXProjectModuleGUID - 1CA23EDF0692099D00951B8B - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{10, 27}, {1233, 164}} - - Module - XCDetailModule - - - ContentConfiguration - - PBXProjectModuleGUID - 1CA23EE00692099D00951B8B - PBXProjectModuleLabel - Project Find - - GeometryConfiguration - - Frame - {{10, 27}, {1233, 498}} - - Module - PBXProjectFindModule - - - ContentConfiguration - - PBXCVSModuleFilterTypeKey - 1032 - PBXProjectModuleGUID - 1CA23EE10692099D00951B8B - PBXProjectModuleLabel - SCM Results - - GeometryConfiguration - - Frame - {{10, 27}, {1233, 164}} - - Module - PBXCVSModule - - - ContentConfiguration - - PBXProjectModuleGUID - XCMainBuildResultsModuleGUID - PBXProjectModuleLabel - Build Results - XCBuildResultsTrigger_Collapse - 1021 - XCBuildResultsTrigger_Open - 1010 - - GeometryConfiguration - - Frame - {{10, 27}, {1233, 164}} - RubberWindowFrame - 0 104 1440 774 0 0 1440 878 - - Module - PBXBuildResultsModule - - - - - Proportion - 1233pt - - - Name - Project - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - XCModuleDock - PBXNavigatorGroup - XCDockableTabModule - XCDetailModule - PBXProjectFindModule - PBXCVSModule - PBXBuildResultsModule - - TableOfContents - - 76F48FCE151E8211006ADD64 - 1CA23ED40692098700951B8B - 76F48FCF151E8211006ADD64 - 76B1528E14812B1400CE098F - 76F48FD0151E8211006ADD64 - 1CA23EDF0692099D00951B8B - 1CA23EE00692099D00951B8B - 1CA23EE10692099D00951B8B - XCMainBuildResultsModuleGUID - - ToolbarConfigUserDefaultsMinorVersion - 2 - ToolbarConfiguration - xcode.toolbar.config.defaultV3 - - - ChosenToolbarItems - - XCToolbarPerspectiveControl - NSToolbarSeparatorItem - active-combo-popup - NSToolbarFlexibleSpaceItem - debugger-enable-breakpoints - build-and-go - com.apple.ide.PBXToolbarStopButton - debugger-restart-executable - debugger-pause - debugger-step-over - debugger-step-into - debugger-step-out - NSToolbarFlexibleSpaceItem - servicesModulebreakpoints - debugger-show-console-window - - ControllerClassBaseName - PBXDebugSessionModule - IconName - DebugTabIcon - Identifier - perspective.debug - IsVertical - - Layout - - - ContentConfiguration - - PBXProjectModuleGUID - 1CCC7628064C1048000F2A68 - PBXProjectModuleLabel - Debugger Console - - GeometryConfiguration - - Frame - {{0, 0}, {1440, 285}} - - Module - PBXDebugCLIModule - Proportion - 285pt - - - ContentConfiguration - - Debugger - - HorizontalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {702, 215}} - {{702, 0}, {738, 215}} - - - VerticalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {1440, 215}} - {{0, 215}, {1440, 228}} - - - - LauncherConfigVersion - 8 - PBXProjectModuleGUID - 1CCC7629064C1048000F2A68 - PBXProjectModuleLabel - Debug - - GeometryConfiguration - - DebugConsoleVisible - None - DebugConsoleWindowFrame - {{200, 200}, {500, 300}} - DebugSTDIOWindowFrame - {{200, 200}, {500, 300}} - Frame - {{0, 290}, {1440, 443}} - PBXDebugSessionStackFrameViewKey - - DebugVariablesTableConfiguration - - Name - 120 - Value - 85 - Summary - 508 - - Frame - {{702, 0}, {738, 215}} - - - Module - PBXDebugSessionModule - Proportion - 443pt - - - Name - Debug - ServiceClasses - - XCModuleDock - PBXDebugCLIModule - PBXDebugSessionModule - PBXDebugProcessAndThreadModule - PBXDebugProcessViewModule - PBXDebugThreadViewModule - PBXDebugStackFrameViewModule - PBXNavigatorGroup - - TableOfContents - - 768A9CE11482EDFD009E5439 - 1CCC7628064C1048000F2A68 - 1CCC7629064C1048000F2A68 - 768A9CE21482EDFD009E5439 - 768A9CE31482EDFD009E5439 - 768A9CE41482EDFD009E5439 - 768A9CE51482EDFD009E5439 - 76B1528E14812B1400CE098F - - ToolbarConfigUserDefaultsMinorVersion - 2 - ToolbarConfiguration - xcode.toolbar.config.debugV3 - - - PerspectivesBarVisible - - ShelfIsVisible - - SourceDescription - file at '/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/XCPerspectivesSpecification.xcperspec' - StatusbarIsVisible - - TimeStamp - 354338950.58274299 - ToolbarConfigUserDefaultsMinorVersion - 2 - ToolbarDisplayMode - 1 - ToolbarIsVisible - - ToolbarSizeMode - 1 - Type - Perspectives - UpdateMessage - - WindowJustification - 5 - WindowOrderList - - /Users/quetwo/Documents/SerialANE/SerialANE.xcodeproj - - WindowString - 0 104 1440 774 0 0 1440 878 - WindowToolsV3 - - - Identifier - windowTool.debugger - Layout - - - Dock - - - ContentConfiguration - - Debugger - - HorizontalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {317, 164}} - {{317, 0}, {377, 164}} - - - VerticalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {694, 164}} - {{0, 164}, {694, 216}} - - - - LauncherConfigVersion - 8 - PBXProjectModuleGUID - 1C162984064C10D400B95A72 - PBXProjectModuleLabel - Debug - GLUTExamples (Underwater) - - GeometryConfiguration - - DebugConsoleDrawerSize - {100, 120} - DebugConsoleVisible - None - DebugConsoleWindowFrame - {{200, 200}, {500, 300}} - DebugSTDIOWindowFrame - {{200, 200}, {500, 300}} - Frame - {{0, 0}, {694, 380}} - RubberWindowFrame - 321 238 694 422 0 0 1440 878 - - Module - PBXDebugSessionModule - Proportion - 100% - - - Proportion - 100% - - - Name - Debugger - ServiceClasses - - PBXDebugSessionModule - - StatusbarIsVisible - 1 - TableOfContents - - 1CD10A99069EF8BA00B06720 - 1C0AD2AB069F1E9B00FABCE6 - 1C162984064C10D400B95A72 - 1C0AD2AC069F1E9B00FABCE6 - - ToolbarConfiguration - xcode.toolbar.config.debugV3 - WindowString - 321 238 694 422 0 0 1440 878 - WindowToolGUID - 1CD10A99069EF8BA00B06720 - WindowToolIsVisible - 0 - - - Identifier - windowTool.build - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528F0623707200166675 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CD052900623707200166675 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {500, 215}} - RubberWindowFrame - 192 257 500 500 0 0 1280 1002 - - Module - PBXNavigatorGroup - Proportion - 218pt - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - XCMainBuildResultsModuleGUID - PBXProjectModuleLabel - Build Results - - GeometryConfiguration - - Frame - {{0, 222}, {500, 236}} - RubberWindowFrame - 192 257 500 500 0 0 1280 1002 - - Module - PBXBuildResultsModule - Proportion - 236pt - - - Proportion - 458pt - - - Name - Build Results - ServiceClasses - - PBXBuildResultsModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C78EAA5065D492600B07095 - 1C78EAA6065D492600B07095 - 1CD0528F0623707200166675 - XCMainBuildResultsModuleGUID - - ToolbarConfiguration - xcode.toolbar.config.buildV3 - WindowString - 192 257 500 500 0 0 1280 1002 - - - Identifier - windowTool.find - Layout - - - Dock - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CDD528C0622207200134675 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CD0528D0623707200166675 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {781, 167}} - RubberWindowFrame - 62 385 781 470 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 781pt - - - Proportion - 50% - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528E0623707200166675 - PBXProjectModuleLabel - Project Find - - GeometryConfiguration - - Frame - {{8, 0}, {773, 254}} - RubberWindowFrame - 62 385 781 470 0 0 1440 878 - - Module - PBXProjectFindModule - Proportion - 50% - - - Proportion - 428pt - - - Name - Project Find - ServiceClasses - - PBXProjectFindModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C530D57069F1CE1000CFCEE - 1C530D58069F1CE1000CFCEE - 1C530D59069F1CE1000CFCEE - 1CDD528C0622207200134675 - 1C530D5A069F1CE1000CFCEE - 1CE0B1FE06471DED0097A5F4 - 1CD0528E0623707200166675 - - WindowString - 62 385 781 470 0 0 1440 878 - WindowToolGUID - 1C530D57069F1CE1000CFCEE - WindowToolIsVisible - 0 - - - Identifier - windowTool.snapshots - Layout - - - Dock - - - Module - XCSnapshotModule - Proportion - 100% - - - Proportion - 100% - - - Name - Snapshots - ServiceClasses - - XCSnapshotModule - - StatusbarIsVisible - Yes - ToolbarConfiguration - xcode.toolbar.config.snapshots - WindowString - 315 824 300 550 0 0 1440 878 - WindowToolIsVisible - Yes - - - Identifier - windowTool.debuggerConsole - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAAC065D492600B07095 - PBXProjectModuleLabel - Debugger Console - - GeometryConfiguration - - Frame - {{0, 0}, {700, 358}} - RubberWindowFrame - 149 87 700 400 0 0 1440 878 - - Module - PBXDebugCLIModule - Proportion - 358pt - - - Proportion - 358pt - - - Name - Debugger Console - ServiceClasses - - PBXDebugCLIModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C530D5B069F1CE1000CFCEE - 1C530D5C069F1CE1000CFCEE - 1C78EAAC065D492600B07095 - - ToolbarConfiguration - xcode.toolbar.config.consoleV3 - WindowString - 149 87 440 400 0 0 1440 878 - WindowToolGUID - 1C530D5B069F1CE1000CFCEE - WindowToolIsVisible - 0 - - - Identifier - windowTool.scm - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAB2065D492600B07095 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1C78EAB3065D492600B07095 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {452, 0}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1CD052920623707200166675 - PBXProjectModuleLabel - SCM - - GeometryConfiguration - - ConsoleFrame - {{0, 259}, {452, 0}} - Frame - {{0, 7}, {452, 259}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - TableConfiguration - - Status - 30 - FileName - 199 - Path - 197.09500122070312 - - TableFrame - {{0, 0}, {452, 250}} - - Module - PBXCVSModule - Proportion - 262pt - - - Proportion - 266pt - - - Name - SCM - ServiceClasses - - PBXCVSModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C78EAB4065D492600B07095 - 1C78EAB5065D492600B07095 - 1C78EAB2065D492600B07095 - 1CD052920623707200166675 - - ToolbarConfiguration - xcode.toolbar.config.scmV3 - WindowString - 743 379 452 308 0 0 1280 1002 - - - Identifier - windowTool.breakpoints - IsVertical - 0 - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C77FABC04509CD000000102 - - PBXProjectModuleGUID - 1CE0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - no - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 168 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 1C77FABC04509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {168, 350}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - 0 - - GeometryConfiguration - - Frame - {{0, 0}, {185, 368}} - GroupTreeTableConfiguration - - MainColumn - 168 - - RubberWindowFrame - 315 424 744 409 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 185pt - - - ContentConfiguration - - PBXProjectModuleGUID - 1CA1AED706398EBD00589147 - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{190, 0}, {554, 368}} - RubberWindowFrame - 315 424 744 409 0 0 1440 878 - - Module - XCDetailModule - Proportion - 554pt - - - Proportion - 368pt - - - MajorVersion - 3 - MinorVersion - 0 - Name - Breakpoints - ServiceClasses - - PBXSmartGroupTreeModule - XCDetailModule - - StatusbarIsVisible - 1 - TableOfContents - - 1CDDB66807F98D9800BB5817 - 1CDDB66907F98D9800BB5817 - 1CE0B1FE06471DED0097A5F4 - 1CA1AED706398EBD00589147 - - ToolbarConfiguration - xcode.toolbar.config.breakpointsV3 - WindowString - 315 424 744 409 0 0 1440 878 - WindowToolGUID - 1CDDB66807F98D9800BB5817 - WindowToolIsVisible - 1 - - - Identifier - windowTool.debugAnimator - Layout - - - Dock - - - Module - PBXNavigatorGroup - Proportion - 100% - - - Proportion - 100% - - - Name - Debug Visualizer - ServiceClasses - - PBXNavigatorGroup - - StatusbarIsVisible - 1 - ToolbarConfiguration - xcode.toolbar.config.debugAnimatorV3 - WindowString - 100 100 700 500 0 0 1280 1002 - - - Identifier - windowTool.bookmarks - Layout - - - Dock - - - Module - PBXBookmarksModule - Proportion - 166pt - - - Proportion - 166pt - - - Name - Bookmarks - ServiceClasses - - PBXBookmarksModule - - StatusbarIsVisible - 0 - WindowString - 538 42 401 187 0 0 1280 1002 - - - Identifier - windowTool.projectFormatConflicts - Layout - - - Dock - - - Module - XCProjectFormatConflictsModule - Proportion - 100% - - - Proportion - 100% - - - Name - Project Format Conflicts - ServiceClasses - - XCProjectFormatConflictsModule - - StatusbarIsVisible - 0 - WindowContentMinSize - 450 300 - WindowString - 50 850 472 307 0 0 1440 877 - - - Identifier - windowTool.classBrowser - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - OptionsSetName - Hierarchy, all classes - PBXProjectModuleGUID - 1CA6456E063B45B4001379D8 - PBXProjectModuleLabel - Class Browser - NSObject - - GeometryConfiguration - - ClassesFrame - {{0, 0}, {369, 96}} - ClassesTreeTableConfiguration - - PBXClassNameColumnIdentifier - 208 - PBXClassBookColumnIdentifier - 22 - - Frame - {{0, 0}, {616, 353}} - MembersFrame - {{0, 105}, {369, 395}} - MembersTreeTableConfiguration - - PBXMemberTypeIconColumnIdentifier - 22 - PBXMemberNameColumnIdentifier - 216 - PBXMemberTypeColumnIdentifier - 94 - PBXMemberBookColumnIdentifier - 22 - - PBXModuleWindowStatusBarHidden2 - 1 - RubberWindowFrame - 597 125 616 374 0 0 1280 1002 - - Module - PBXClassBrowserModule - Proportion - 354pt - - - Proportion - 354pt - - - Name - Class Browser - ServiceClasses - - PBXClassBrowserModule - - StatusbarIsVisible - 0 - TableOfContents - - 1C78EABA065D492600B07095 - 1C78EABB065D492600B07095 - 1CA6456E063B45B4001379D8 - - ToolbarConfiguration - xcode.toolbar.config.classbrowser - WindowString - 597 125 616 374 0 0 1280 1002 - - - Identifier - windowTool.refactoring - IncludeInToolsMenu - 0 - Layout - - - Dock - - - BecomeActive - 1 - GeometryConfiguration - - Frame - {0, 0}, {500, 335} - RubberWindowFrame - {0, 0}, {500, 335} - - Module - XCRefactoringModule - Proportion - 100% - - - Proportion - 100% - - - Name - Refactoring - ServiceClasses - - XCRefactoringModule - - WindowString - 200 200 500 356 0 0 1920 1200 - - - - diff --git a/native-extension/MacOS-x86/SerialANE_Prefix.pch b/native-extension/MacOS-x86/SerialANE_Prefix.pch deleted file mode 100644 index d894b12..0000000 --- a/native-extension/MacOS-x86/SerialANE_Prefix.pch +++ /dev/null @@ -1,7 +0,0 @@ -// -// Prefix header for all source files of the 'SerialANE' target in the 'SerialANE' project. -// - -#ifdef __OBJC__ - #import -#endif diff --git a/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Resources b/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Resources deleted file mode 120000 index 953ee36..0000000 --- a/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/native-extension/MacOS-x86/build/Debug/SerialANE.framework/SerialANE b/native-extension/MacOS-x86/build/Debug/SerialANE.framework/SerialANE deleted file mode 120000 index ae9b8f2..0000000 --- a/native-extension/MacOS-x86/build/Debug/SerialANE.framework/SerialANE +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/SerialANE \ No newline at end of file diff --git a/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings b/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings deleted file mode 100644 index dea12de..0000000 Binary files a/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings and /dev/null differ diff --git a/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist b/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index d609067..0000000 --- a/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - SerialANE - CFBundleIdentifier - com.yourcompany.SerialANE - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - SerialANE - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - - diff --git a/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Versions/A/SerialANE b/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Versions/A/SerialANE deleted file mode 100755 index 827ca23..0000000 Binary files a/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Versions/A/SerialANE and /dev/null differ diff --git a/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Versions/Current b/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Versions/Current deleted file mode 120000 index 8c7e5a6..0000000 --- a/native-extension/MacOS-x86/build/Debug/SerialANE.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/native-extension/MacOS-x86/build/Release/SerialANE.framework.dSYM/Contents/Info.plist b/native-extension/MacOS-x86/build/Release/SerialANE.framework.dSYM/Contents/Info.plist deleted file mode 100644 index cd42e49..0000000 --- a/native-extension/MacOS-x86/build/Release/SerialANE.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.yourcompany.SerialANE - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - - diff --git a/native-extension/MacOS-x86/build/Release/SerialANE.framework.dSYM/Contents/Resources/DWARF/SerialANE b/native-extension/MacOS-x86/build/Release/SerialANE.framework.dSYM/Contents/Resources/DWARF/SerialANE deleted file mode 100644 index 5a1f142..0000000 Binary files a/native-extension/MacOS-x86/build/Release/SerialANE.framework.dSYM/Contents/Resources/DWARF/SerialANE and /dev/null differ diff --git a/native-extension/MacOS-x86/build/Release/SerialANE.framework/Resources b/native-extension/MacOS-x86/build/Release/SerialANE.framework/Resources deleted file mode 120000 index 953ee36..0000000 --- a/native-extension/MacOS-x86/build/Release/SerialANE.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/native-extension/MacOS-x86/build/Release/SerialANE.framework/SerialANE b/native-extension/MacOS-x86/build/Release/SerialANE.framework/SerialANE deleted file mode 120000 index ae9b8f2..0000000 --- a/native-extension/MacOS-x86/build/Release/SerialANE.framework/SerialANE +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/SerialANE \ No newline at end of file diff --git a/native-extension/MacOS-x86/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings b/native-extension/MacOS-x86/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings deleted file mode 100644 index dea12de..0000000 Binary files a/native-extension/MacOS-x86/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings and /dev/null differ diff --git a/native-extension/MacOS-x86/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist b/native-extension/MacOS-x86/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index d609067..0000000 --- a/native-extension/MacOS-x86/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - SerialANE - CFBundleIdentifier - com.yourcompany.SerialANE - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - SerialANE - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - - diff --git a/native-extension/MacOS-x86/build/Release/SerialANE.framework/Versions/A/SerialANE b/native-extension/MacOS-x86/build/Release/SerialANE.framework/Versions/A/SerialANE deleted file mode 100755 index c341bfa..0000000 Binary files a/native-extension/MacOS-x86/build/Release/SerialANE.framework/Versions/A/SerialANE and /dev/null differ diff --git a/native-extension/MacOS-x86/build/Release/SerialANE.framework/Versions/Current b/native-extension/MacOS-x86/build/Release/SerialANE.framework/Versions/Current deleted file mode 120000 index 8c7e5a6..0000000 --- a/native-extension/MacOS-x86/build/Release/SerialANE.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.build/SerialANE.framework.dep b/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.build/SerialANE.framework.dep deleted file mode 100644 index b698029..0000000 --- a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.build/SerialANE.framework.dep +++ /dev/null @@ -1,5 +0,0 @@ -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.build/build-state.dat b/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.build/build-state.dat deleted file mode 100644 index 912497d..0000000 --- a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.build/build-state.dat +++ /dev/null @@ -1,49 +0,0 @@ -TSerialANE -v7 -r1 - -N/Users/quetwo/Documents/SerialANE/English.lproj/InfoPlist.strings -c000000004ECFCD560000000000000030 -t1322241366 -s48 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework -t2 -s0 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources -t2 -s0 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -t2 -s0 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist -t2 -s0 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current -t2 -s0 - -NInfo.plist -c000000004ECFCD560000000000000357 -t1322241366 -s855 - -CCopyStringsFile /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -r0 - -CProcessInfoPlistFile /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist Info.plist -r0 - -CSymLink /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources Versions/Current/Resources -r0 - -CSymLink /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current A -r0 - -CTouch /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework -r0 - diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList b/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList deleted file mode 100644 index 36d503c..0000000 --- a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList +++ /dev/null @@ -1,2 +0,0 @@ -/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.o -/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/rs232.o diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-all-target-headers.hmap b/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-all-target-headers.hmap deleted file mode 100644 index cfd9cb2..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-all-target-headers.hmap and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-generated-files.hmap b/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-generated-files.hmap deleted file mode 100644 index dd8b535..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-generated-files.hmap and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-own-target-headers.hmap b/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-own-target-headers.hmap deleted file mode 100644 index 67b3719..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-own-target-headers.hmap and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-project-headers.hmap b/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-project-headers.hmap deleted file mode 100644 index 074897a..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-project-headers.hmap and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE.framework.dep b/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE.framework.dep deleted file mode 100644 index e2ebfed..0000000 --- a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE.framework.dep +++ /dev/null @@ -1,11 +0,0 @@ -37b671ff3a1c171982699c88bfb6c9cb d0f1e2960391eee565eb678e9fb31ff1 ffffffffffffffffffffffffffffffff 170 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework -00000000000000000000000000000000 0bea23bd14bfd634fde00fb459f055d9 ffffffffffffffffffffffffffffffff 26 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/SerialANE -00000000000000000000000000000000 0805fb75df384a06164a0eae468ee50d ffffffffffffffffffffffffffffffff 26 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources -00000000000000000000000000000000 1817637282f7d464147f79d9c3307919 ffffffffffffffffffffffffffffffff 1 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current -58ff123b4553e1e4ce8b0321be73bd20 4041d353f29526d8678875c3ec2db961 ffffffffffffffffffffffffffffffff 18512 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/SerialANE -000000004ecfcd560000000000000030 e219af491437be3c94428dbb9e9b6934 ffffffffffffffffffffffffffffffff 92 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -00000000000000000000000000000000 d6e9a4649e52eb1940fd1f12af3d6d43 ffffffffffffffffffffffffffffffff 720 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist -19dd1d0a40f51007ee62942c02077dca d794c77bc8d3353291d18c743bab4ed4 ffffffffffffffffffffffffffffffff 7456 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/rs232.o -19dd1d0a442b29e1ee62942c020752ee 8f6bd540c742d43d5f5a8f55849f0242 ffffffffffffffffffffffffffffffff 14496 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.o -000000000e0b673e0000000000000173 19dd1d0a04bd87aaee62942c020763ed ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 781aa12d32d7cac2f6fab38b1ca13490 ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-cyvtxslsicamktcmoqjaokgvnfbb/SerialANE_Prefix.pch.gch diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE.framework~.dep b/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE.framework~.dep deleted file mode 100644 index e2ebfed..0000000 --- a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE.framework~.dep +++ /dev/null @@ -1,11 +0,0 @@ -37b671ff3a1c171982699c88bfb6c9cb d0f1e2960391eee565eb678e9fb31ff1 ffffffffffffffffffffffffffffffff 170 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework -00000000000000000000000000000000 0bea23bd14bfd634fde00fb459f055d9 ffffffffffffffffffffffffffffffff 26 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/SerialANE -00000000000000000000000000000000 0805fb75df384a06164a0eae468ee50d ffffffffffffffffffffffffffffffff 26 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources -00000000000000000000000000000000 1817637282f7d464147f79d9c3307919 ffffffffffffffffffffffffffffffff 1 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current -58ff123b4553e1e4ce8b0321be73bd20 4041d353f29526d8678875c3ec2db961 ffffffffffffffffffffffffffffffff 18512 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/SerialANE -000000004ecfcd560000000000000030 e219af491437be3c94428dbb9e9b6934 ffffffffffffffffffffffffffffffff 92 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -00000000000000000000000000000000 d6e9a4649e52eb1940fd1f12af3d6d43 ffffffffffffffffffffffffffffffff 720 /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist -19dd1d0a40f51007ee62942c02077dca d794c77bc8d3353291d18c743bab4ed4 ffffffffffffffffffffffffffffffff 7456 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/rs232.o -19dd1d0a442b29e1ee62942c020752ee 8f6bd540c742d43d5f5a8f55849f0242 ffffffffffffffffffffffffffffffff 14496 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.o -000000000e0b673e0000000000000173 19dd1d0a04bd87aaee62942c020763ed ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 781aa12d32d7cac2f6fab38b1ca13490 ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-cyvtxslsicamktcmoqjaokgvnfbb/SerialANE_Prefix.pch.gch diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE.hmap b/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE.hmap deleted file mode 100644 index f310a83..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE.hmap and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/build-state.dat b/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/build-state.dat deleted file mode 100644 index 8a0210f..0000000 --- a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/build-state.dat +++ /dev/null @@ -1,331 +0,0 @@ -TSerialANE.framework -v7 -r0 -t343936083.647386 -cCheck dependencies -cSymLink /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current A -cSymLink /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources Versions/Current/Resources -cSymLink /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/SerialANE Versions/Current/SerialANE -cProcessInfoPlistFile /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist Info.plist -cCopyStringsFile /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -cProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -cCompileC build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.o /Users/quetwo/Documents/SerialANE/SerialANE.c normal i386 c com.apple.compilers.gcc.4_2 -cCompileC build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/rs232.o /Users/quetwo/Documents/SerialANE/rs232.c normal i386 c com.apple.compilers.gcc.4_2 -cLd /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/SerialANE normal i386 -cTouch /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework - -N/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR -c000000004EB7594B0000000001477B9C -t1320638795 -s21461916 - -N/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Headers/Adobe AIR.h -c000000004EB759450000000000000314 -t1320638789 -s788 -i - -N/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Headers/FlashRuntimeExtensions.h -c000000004EB759450000000000004D52 -t1320638789 -s19794 -i - -N/Developer/SDKs/MacOSX10.5.sdk -c000000004AB44D2500000000000000EE -t1253330213 -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/fcntl.h -c0000000047BA993000000000000003EA -t1203411248 -s1002 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h -c0000000047BA9932000000000000380F -t1203411250 -s14351 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdio.h -c0000000047BA99310000000000003D1D -t1203411249 -s15645 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdlib.h -c0000000047BA99310000000000002A79 -t1203411249 -s10873 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h -c0000000047BA99320000000000001731 -t1203411250 -s5937 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/ioctl.h -c0000000047E883CF00000000000011D1 -t1206420431 -s4561 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/stat.h -c0000000047E883D100000000000047CE -t1206420433 -s18382 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h -c0000000047E883D2000000000000290F -t1206420434 -s10511 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/termios.h -c0000000047BA993000000000000004D4 -t1203411248 -s1236 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/unistd.h -c0000000047BA993200000000000053FF -t1203411250 -s21503 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/gcc/i686-apple-darwin10/4.2.1/include/limits.h -c000000004A11EAF10000000000000C7E -t1242688241 -s3198 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/gcc/i686-apple-darwin10/4.2.1/include/stdint.h -c000000004A11EAF1000000000000190C -t1242688241 -s6412 - -N/System/Library/Frameworks/Cocoa.framework/Cocoa -c000000004A1F2D63000000000000A5E0 -t1243557219 -s42464 - -N/Users/quetwo/Documents/SerialANE/English.lproj/InfoPlist.strings -c000000004ECFCD560000000000000030 -t1322241366 -s48 - -N/Users/quetwo/Documents/SerialANE/SerialANE.c -c000000004ECFD4C90000000000001E6A -t1322243273 -s7786 -i"SerialANE.h" -i"stdio.h" -i"pthread.h" -i"stdlib.h" -i"stdint.h" -i"String.h" -i"rs232.h" -i - -N/Users/quetwo/Documents/SerialANE/SerialANE.h -c000000004ECFD34C0000000000000422 -t1322242892 -s1058 -i - -N/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -c000000004ECFCD560000000000000096 -t1322241366 -s150 -i - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework -t1322243283 -s170 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources -t3 -s26 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/SerialANE -t3 -s26 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -t1322243283 -s92 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist -t1322243283 -s720 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/SerialANE -t1322243283 -s18512 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current -t3 -s1 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList -c000000004ECFD4D300000000000000EC -t1322243283 -s236 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.o -t1322243283 -s14496 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/rs232.o -t1322243283 -s7456 - -N/Users/quetwo/Documents/SerialANE/rs232.c -c000000004ECFD492000000000000143A -t1322243218 -s5178 -i"rs232.h" - -N/Users/quetwo/Documents/SerialANE/rs232.h -c000000004ECFD40D00000000000006ED -t1322243085 -s1773 -i -i -i -i -i -i -i -i -i - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch.gch -t1322243283 -s2191728 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-cyvtxslsicamktcmoqjaokgvnfbb/SerialANE_Prefix.pch.gch -t1322242346 -s2191728 - -NInfo.plist -c000000004ECFCD560000000000000357 -t1322241366 -s855 - -CCheck dependencies -r0 -lSLF07#2@18"Check dependencies343936083#343936083#0(0"0(0#1#0"4300885448#0"0# - -CCompileC build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.o /Users/quetwo/Documents/SerialANE/SerialANE.c normal i386 c com.apple.compilers.gcc.4_2 -s343936083.486523 -e343936083.593413 -r1 -xCompileC -xbuild/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.o -x/Users/quetwo/Documents/SerialANE/SerialANE.c -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@53"Compile /Users/quetwo/Documents/SerialANE/SerialANE.c343936083#343936083#0(0"0(0#0#45"/Users/quetwo/Documents/SerialANE/SerialANE.c4300885448#1589" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Debug "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Debug/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources -fvisibility=hidden -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/SerialANE.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.o 0# - -CCompileC build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/rs232.o /Users/quetwo/Documents/SerialANE/rs232.c normal i386 c com.apple.compilers.gcc.4_2 -s343936083.487490 -e343936083.573608 -r1 -xCompileC -xbuild/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/rs232.o -x/Users/quetwo/Documents/SerialANE/rs232.c -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@49"Compile /Users/quetwo/Documents/SerialANE/rs232.c343936083#343936083#0(0"0(0#0#41"/Users/quetwo/Documents/SerialANE/rs232.c4300885448#1581" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Debug "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Debug/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources -fvisibility=hidden -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/rs232.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/rs232.o 0# - -CCopyStringsFile /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -s343936083.391461 -e343936083.420152 -r1 -xCopyStringsFile -x/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -xEnglish.lproj/InfoPlist.strings -lSLF07#2@36"Copy English.lproj/InfoPlist.strings343936083#343936083#0(0"0(0#0#65"/Users/quetwo/Documents/SerialANE/English.lproj/InfoPlist.strings4300885448#365" cd /Users/quetwo/Documents/SerialANE 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/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj 0# - -CLd /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/SerialANE normal i386 -s343936083.593503 -e343936083.644425 -r1 -xLd -x/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/SerialANE -xnormal -xi386 -lSLF07#2@91"Link /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/SerialANE343936083#343936083#0(0"0(0#0#0"4300885448#924" cd /Users/quetwo/Documents/SerialANE setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/gcc-4.2 -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/quetwo/Documents/SerialANE/build/Debug -F/Users/quetwo/Documents/SerialANE/build/Debug "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -filelist /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList -install_name /Users/quetwo/Library/Frameworks/SerialANE.framework/Versions/A/SerialANE -Xlinker -rpath -Xlinker "/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -mmacosx-version-min=10.5 -flat_namespace -weak_framework "Adobe AIR" -framework Cocoa -framework "Adobe AIR" -single_module -compatibility_version 1 -current_version 1 -o /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/SerialANE 0# - -CProcessInfoPlistFile /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist Info.plist -s343936083.386170 -e343936083.391370 -r1 -xProcessInfoPlistFile -x/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist -xInfo.plist -lSLF07#2@18"Process Info.plist343936083#343936083#0(0"0(0#0#44"/Users/quetwo/Documents/SerialANE/Info.plist4300885448#220" cd /Users/quetwo/Documents/SerialANE builtin-infoPlistUtility Info.plist -expandbuildsettings -platform macosx -o /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s343936083.420275 -e343936083.486423 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch343936083#343936083#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1480" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Debug "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Debug/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources -fvisibility=hidden -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-cyvtxslsicamktcmoqjaokgvnfbb/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s343935146.763141 -e343935147.070524 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-cyvtxslsicamktcmoqjaokgvnfbb/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch343935146#343935147#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1460" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Debug "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Debug/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-cyvtxslsicamktcmoqjaokgvnfbb/SerialANE_Prefix.pch.gch 0# - -CSymLink /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources Versions/Current/Resources -s343936083.379308 -e343936083.385472 -r1 -xSymLink -x/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources -xVersions/Current/Resources -lSLF07#2@83"Process /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources343936083#343936083#0(0"0(0#0#0"4300885448#160" cd /Users/quetwo/Documents/SerialANE /bin/ln -sf Versions/Current/Resources /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources 0# - -CSymLink /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/SerialANE Versions/Current/SerialANE -s343936083.382739 -e343936083.386101 -r1 -xSymLink -x/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/SerialANE -xVersions/Current/SerialANE -lSLF07#2@83"Process /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/SerialANE343936083#343936083#0(0"0(0#0#0"4300885448#160" cd /Users/quetwo/Documents/SerialANE /bin/ln -sf Versions/Current/SerialANE /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/SerialANE 0# - -CSymLink /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current A -s343936083.378241 -e343936083.382653 -r1 -xSymLink -x/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current -xA -lSLF07#2@90"Process /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current343936083#343936083#0(0"0(0#0#0"4300885448#142" cd /Users/quetwo/Documents/SerialANE /bin/ln -sf A /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current 0# - -CTouch /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework -s343936083.644519 -e343936083.647347 -r1 -xTouch -x/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework -lSLF07#2@71"Touch /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework343936083#343936083#0(0"0(0#0#0"4300885448#129" cd /Users/quetwo/Documents/SerialANE /usr/bin/touch -c /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework 0# - diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/build-state~.dat b/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/build-state~.dat deleted file mode 100644 index 8a0210f..0000000 --- a/native-extension/MacOS-x86/build/SerialANE.build/Debug/SerialANE.framework.build/build-state~.dat +++ /dev/null @@ -1,331 +0,0 @@ -TSerialANE.framework -v7 -r0 -t343936083.647386 -cCheck dependencies -cSymLink /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current A -cSymLink /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources Versions/Current/Resources -cSymLink /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/SerialANE Versions/Current/SerialANE -cProcessInfoPlistFile /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist Info.plist -cCopyStringsFile /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -cProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -cCompileC build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.o /Users/quetwo/Documents/SerialANE/SerialANE.c normal i386 c com.apple.compilers.gcc.4_2 -cCompileC build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/rs232.o /Users/quetwo/Documents/SerialANE/rs232.c normal i386 c com.apple.compilers.gcc.4_2 -cLd /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/SerialANE normal i386 -cTouch /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework - -N/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR -c000000004EB7594B0000000001477B9C -t1320638795 -s21461916 - -N/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Headers/Adobe AIR.h -c000000004EB759450000000000000314 -t1320638789 -s788 -i - -N/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Headers/FlashRuntimeExtensions.h -c000000004EB759450000000000004D52 -t1320638789 -s19794 -i - -N/Developer/SDKs/MacOSX10.5.sdk -c000000004AB44D2500000000000000EE -t1253330213 -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/fcntl.h -c0000000047BA993000000000000003EA -t1203411248 -s1002 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h -c0000000047BA9932000000000000380F -t1203411250 -s14351 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdio.h -c0000000047BA99310000000000003D1D -t1203411249 -s15645 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdlib.h -c0000000047BA99310000000000002A79 -t1203411249 -s10873 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h -c0000000047BA99320000000000001731 -t1203411250 -s5937 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/ioctl.h -c0000000047E883CF00000000000011D1 -t1206420431 -s4561 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/stat.h -c0000000047E883D100000000000047CE -t1206420433 -s18382 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h -c0000000047E883D2000000000000290F -t1206420434 -s10511 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/termios.h -c0000000047BA993000000000000004D4 -t1203411248 -s1236 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/unistd.h -c0000000047BA993200000000000053FF -t1203411250 -s21503 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/gcc/i686-apple-darwin10/4.2.1/include/limits.h -c000000004A11EAF10000000000000C7E -t1242688241 -s3198 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/gcc/i686-apple-darwin10/4.2.1/include/stdint.h -c000000004A11EAF1000000000000190C -t1242688241 -s6412 - -N/System/Library/Frameworks/Cocoa.framework/Cocoa -c000000004A1F2D63000000000000A5E0 -t1243557219 -s42464 - -N/Users/quetwo/Documents/SerialANE/English.lproj/InfoPlist.strings -c000000004ECFCD560000000000000030 -t1322241366 -s48 - -N/Users/quetwo/Documents/SerialANE/SerialANE.c -c000000004ECFD4C90000000000001E6A -t1322243273 -s7786 -i"SerialANE.h" -i"stdio.h" -i"pthread.h" -i"stdlib.h" -i"stdint.h" -i"String.h" -i"rs232.h" -i - -N/Users/quetwo/Documents/SerialANE/SerialANE.h -c000000004ECFD34C0000000000000422 -t1322242892 -s1058 -i - -N/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -c000000004ECFCD560000000000000096 -t1322241366 -s150 -i - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework -t1322243283 -s170 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources -t3 -s26 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/SerialANE -t3 -s26 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -t1322243283 -s92 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist -t1322243283 -s720 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/SerialANE -t1322243283 -s18512 - -N/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current -t3 -s1 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList -c000000004ECFD4D300000000000000EC -t1322243283 -s236 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.o -t1322243283 -s14496 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/rs232.o -t1322243283 -s7456 - -N/Users/quetwo/Documents/SerialANE/rs232.c -c000000004ECFD492000000000000143A -t1322243218 -s5178 -i"rs232.h" - -N/Users/quetwo/Documents/SerialANE/rs232.h -c000000004ECFD40D00000000000006ED -t1322243085 -s1773 -i -i -i -i -i -i -i -i -i - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch.gch -t1322243283 -s2191728 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-cyvtxslsicamktcmoqjaokgvnfbb/SerialANE_Prefix.pch.gch -t1322242346 -s2191728 - -NInfo.plist -c000000004ECFCD560000000000000357 -t1322241366 -s855 - -CCheck dependencies -r0 -lSLF07#2@18"Check dependencies343936083#343936083#0(0"0(0#1#0"4300885448#0"0# - -CCompileC build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.o /Users/quetwo/Documents/SerialANE/SerialANE.c normal i386 c com.apple.compilers.gcc.4_2 -s343936083.486523 -e343936083.593413 -r1 -xCompileC -xbuild/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.o -x/Users/quetwo/Documents/SerialANE/SerialANE.c -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@53"Compile /Users/quetwo/Documents/SerialANE/SerialANE.c343936083#343936083#0(0"0(0#0#45"/Users/quetwo/Documents/SerialANE/SerialANE.c4300885448#1589" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Debug "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Debug/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources -fvisibility=hidden -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/SerialANE.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.o 0# - -CCompileC build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/rs232.o /Users/quetwo/Documents/SerialANE/rs232.c normal i386 c com.apple.compilers.gcc.4_2 -s343936083.487490 -e343936083.573608 -r1 -xCompileC -xbuild/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/rs232.o -x/Users/quetwo/Documents/SerialANE/rs232.c -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@49"Compile /Users/quetwo/Documents/SerialANE/rs232.c343936083#343936083#0(0"0(0#0#41"/Users/quetwo/Documents/SerialANE/rs232.c4300885448#1581" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Debug "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Debug/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources -fvisibility=hidden -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/rs232.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/rs232.o 0# - -CCopyStringsFile /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -s343936083.391461 -e343936083.420152 -r1 -xCopyStringsFile -x/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -xEnglish.lproj/InfoPlist.strings -lSLF07#2@36"Copy English.lproj/InfoPlist.strings343936083#343936083#0(0"0(0#0#65"/Users/quetwo/Documents/SerialANE/English.lproj/InfoPlist.strings4300885448#365" cd /Users/quetwo/Documents/SerialANE 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/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/English.lproj 0# - -CLd /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/SerialANE normal i386 -s343936083.593503 -e343936083.644425 -r1 -xLd -x/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/SerialANE -xnormal -xi386 -lSLF07#2@91"Link /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/SerialANE343936083#343936083#0(0"0(0#0#0"4300885448#924" cd /Users/quetwo/Documents/SerialANE setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/gcc-4.2 -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/quetwo/Documents/SerialANE/build/Debug -F/Users/quetwo/Documents/SerialANE/build/Debug "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -filelist /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList -install_name /Users/quetwo/Library/Frameworks/SerialANE.framework/Versions/A/SerialANE -Xlinker -rpath -Xlinker "/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -mmacosx-version-min=10.5 -flat_namespace -weak_framework "Adobe AIR" -framework Cocoa -framework "Adobe AIR" -single_module -compatibility_version 1 -current_version 1 -o /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/SerialANE 0# - -CProcessInfoPlistFile /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist Info.plist -s343936083.386170 -e343936083.391370 -r1 -xProcessInfoPlistFile -x/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist -xInfo.plist -lSLF07#2@18"Process Info.plist343936083#343936083#0(0"0(0#0#44"/Users/quetwo/Documents/SerialANE/Info.plist4300885448#220" cd /Users/quetwo/Documents/SerialANE builtin-infoPlistUtility Info.plist -expandbuildsettings -platform macosx -o /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/A/Resources/Info.plist 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s343936083.420275 -e343936083.486423 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch343936083#343936083#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1480" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Debug "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Debug/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources -fvisibility=hidden -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azayngrezvmrzielsoivfrmkoozm/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-cyvtxslsicamktcmoqjaokgvnfbb/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s343935146.763141 -e343935147.070524 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-cyvtxslsicamktcmoqjaokgvnfbb/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch343935146#343935147#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1460" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Debug "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Debug/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Debug/SerialANE.framework.build/DerivedSources -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-cyvtxslsicamktcmoqjaokgvnfbb/SerialANE_Prefix.pch.gch 0# - -CSymLink /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources Versions/Current/Resources -s343936083.379308 -e343936083.385472 -r1 -xSymLink -x/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources -xVersions/Current/Resources -lSLF07#2@83"Process /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources343936083#343936083#0(0"0(0#0#0"4300885448#160" cd /Users/quetwo/Documents/SerialANE /bin/ln -sf Versions/Current/Resources /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Resources 0# - -CSymLink /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/SerialANE Versions/Current/SerialANE -s343936083.382739 -e343936083.386101 -r1 -xSymLink -x/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/SerialANE -xVersions/Current/SerialANE -lSLF07#2@83"Process /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/SerialANE343936083#343936083#0(0"0(0#0#0"4300885448#160" cd /Users/quetwo/Documents/SerialANE /bin/ln -sf Versions/Current/SerialANE /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/SerialANE 0# - -CSymLink /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current A -s343936083.378241 -e343936083.382653 -r1 -xSymLink -x/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current -xA -lSLF07#2@90"Process /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current343936083#343936083#0(0"0(0#0#0"4300885448#142" cd /Users/quetwo/Documents/SerialANE /bin/ln -sf A /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework/Versions/Current 0# - -CTouch /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework -s343936083.644519 -e343936083.647347 -r1 -xTouch -x/Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework -lSLF07#2@71"Touch /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework343936083#343936083#0(0"0(0#0#0"4300885448#129" cd /Users/quetwo/Documents/SerialANE /usr/bin/touch -c /Users/quetwo/Documents/SerialANE/build/Debug/SerialANE.framework 0# - diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList b/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList deleted file mode 100644 index c87630c..0000000 --- a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList +++ /dev/null @@ -1,2 +0,0 @@ -/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.o -/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/rs232.o diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap b/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap deleted file mode 100644 index cfd9cb2..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap b/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap deleted file mode 100644 index dd8b535..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap b/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap deleted file mode 100644 index 67b3719..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap b/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap deleted file mode 100644 index ec882cf..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE.framework.dep b/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE.framework.dep deleted file mode 100644 index 14a2050..0000000 --- a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE.framework.dep +++ /dev/null @@ -1,33 +0,0 @@ -00000000000000000000000000000000 7d06aeb4292363393370655a88055d6b ffffffffffffffffffffffffffffffff 102 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework.dSYM -17b4f620401d20865b4c2bd8efa208ec 91e4429e0333ce9fca91e96398b3ed8a ffffffffffffffffffffffffffffffff 170 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework -00000000000000000000000000000000 1125b917a533484b0f64ecf0ef8e79fe ffffffffffffffffffffffffffffffff 26 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/SerialANE -00000000000000000000000000000000 a4948b922b9d47b876b70335ba40979d ffffffffffffffffffffffffffffffff 26 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Resources -00000000000000000000000000000000 935ce599183d99f99c68cae73aa04664 ffffffffffffffffffffffffffffffff 1 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/Current -000000004ecfcd560000000000000030 c56eb056d9c1c0d42e96085b98dbda4b ffffffffffffffffffffffffffffffff 92 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -00000000000000000000000000000000 1fbe9b6c5d9d90b9e5653b76c82c8955 ffffffffffffffffffffffffffffffff 720 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist -646e3fd5e1125147669c2f8ac197f756 8fe735d3fd0f7af01398125d11ac0493 ffffffffffffffffffffffffffffffff 18836 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE -96268a9d2061f964e5d062080ceefa76 d6053de91859807494eef9f3cb4928ac ffffffffffffffffffffffffffffffff 7092 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/rs232.o -96268a9d24a2194de5d062080ceedb76 b26b023cb2451adef272d6790b928228 ffffffffffffffffffffffffffffffff 15692 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.o -000000000e0b673e0000000000000173 96268a9d6429eddee5d062080ceed619 ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 fc9e8db786c676b9dc3c001df51326e9 ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dvymgnuyjkhxbdftuahrxcbioodb/SerialANE_Prefix.pch.gch -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dhtdonjkunotobdusliuhncxyuli/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 c69d1046ecb8dc708d70384b0b457c12 ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bezqoamocjpgvgbsisfytfabghbs/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 e104311d2864a0e9f20fa72ceca19967 ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fcwpdjuccxtagjgdjyexwzkpafrr/SerialANE_Prefix.pch.gch -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bhrattglsybfrxfrsvfbukrciter/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 4c03e5b7e5acefb70d212c4d9e55d372 ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-efwkvrqnotblfofunkpclmcbhvpf/SerialANE_Prefix.pch.gch -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dhouvpiemftqkdekcxslwwtyliyh/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 f5d25e600c71f848ad95c804fd665395 ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azybmrckhntbptdfrijbpnvkspys/SerialANE_Prefix.pch.gch -8dd7385c59ba6e33dd8be63eafcff4cf 04700fe1658d04f43920488d3220acf6 ffffffffffffffffffffffffffffffff 275 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/StaticAnalyzer/normal/i386/rs232.plist -8dd7385c5d6448c9dd8be63eafcfd9ad 6125632d12a2f72bada25d2949f47c4e ffffffffffffffffffffffffffffffff 275 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/StaticAnalyzer/normal/i386/SerialANE.plist -000000000e0b673e0000000000000173 8dd7385c1df2ca8bdd8be63eafcfd75d ffffffffffffffffffffffffffffffff 55304 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-acxozgsgcarlqfbagytukuxdigbu/SerialANE_Prefix.pch.pth -89457a82f330ef220a62840b07b03b48 8b565cefd91c40db8f7fe12fb7b07c4b ffffffffffffffffffffffffffffffff 0 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE -99bcd8100e578378e98745167a9fce07 8c9f1866c0caa95b250ef07b4b38f9bf ffffffffffffffffffffffffffffffff 19420 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE -a65ffb8561abd943bd202ba02a74200a c6d13f873d7a81118f453735082f0c53 ffffffffffffffffffffffffffffffff 7672 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/rs232.o -a65ffb856575e0a5bd202ba02a740f2e 4f94450584886ed88527b33e0ed8c6ad ffffffffffffffffffffffffffffffff 15700 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE.o -000000000e0b673e0000000000000173 a65ffb8525e34eeebd202ba02a743e2d ffffffffffffffffffffffffffffffff 1954160 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-emtvsdkqpeqabhalxjndvkytvfbk/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 f99a57b598a8d5d62b396a2292bd2d91 ffffffffffffffffffffffffffffffff 1954160 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-erwcteucreqrjcanmvlakgtsjeou/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 584a1ea21338dd52641e7e7063cf7bfc ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dyugocxszpqrybdirpjfbtdlmwvr/SerialANE_Prefix.pch.gch -62ebf8845c7a0d7ec10739782d99a0aa 1ea57bd718239b4bb3a7fdd22607d6ae ffffffffffffffffffffffffffffffff 0 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE -81cb1ee2355f0d550d3ed8ae58de438b 9d5b87414b6abbc3155507121d2e1abe ffffffffffffffffffffffffffffffff 9444 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/rs232.o -81cb1ee2318135660d3ed8ae58de17b5 ffb07fc55ddd0a5bd4523e6a31f030b8 ffffffffffffffffffffffffffffffff 18504 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE.o -000000000e0b673e0000000000000173 81cb1ee2716a43260d3ed8ae58de2960 ffffffffffffffffffffffffffffffff 2208112 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dpvpozlpclhkprhcnnvafnwurwxr/SerialANE_Prefix.pch.gch diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE.framework~.dep b/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE.framework~.dep deleted file mode 100644 index dd0a372..0000000 --- a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE.framework~.dep +++ /dev/null @@ -1,33 +0,0 @@ -17b4f620401d20865b4c2bd8efa208ec 91e4429e0333ce9fca91e96398b3ed8a ffffffffffffffffffffffffffffffff 170 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework -00000000000000000000000000000000 1125b917a533484b0f64ecf0ef8e79fe ffffffffffffffffffffffffffffffff 26 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/SerialANE -00000000000000000000000000000000 a4948b922b9d47b876b70335ba40979d ffffffffffffffffffffffffffffffff 26 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Resources -00000000000000000000000000000000 935ce599183d99f99c68cae73aa04664 ffffffffffffffffffffffffffffffff 1 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/Current -000000004ecfcd560000000000000030 c56eb056d9c1c0d42e96085b98dbda4b ffffffffffffffffffffffffffffffff 92 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -00000000000000000000000000000000 1fbe9b6c5d9d90b9e5653b76c82c8955 ffffffffffffffffffffffffffffffff 720 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist -00000000000000000000000000000000 7d06aeb4292363393370655a88055d6b ffffffffffffffffffffffffffffffff 102 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework.dSYM -646e3fd5e1125147669c2f8ac197f756 8fe735d3fd0f7af01398125d11ac0493 ffffffffffffffffffffffffffffffff 18836 /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE -96268a9d2061f964e5d062080ceefa76 d6053de91859807494eef9f3cb4928ac ffffffffffffffffffffffffffffffff 7092 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/rs232.o -96268a9d24a2194de5d062080ceedb76 b26b023cb2451adef272d6790b928228 ffffffffffffffffffffffffffffffff 15692 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.o -000000000e0b673e0000000000000173 96268a9d6429eddee5d062080ceed619 ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 fc9e8db786c676b9dc3c001df51326e9 ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dvymgnuyjkhxbdftuahrxcbioodb/SerialANE_Prefix.pch.gch -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dhtdonjkunotobdusliuhncxyuli/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 c69d1046ecb8dc708d70384b0b457c12 ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bezqoamocjpgvgbsisfytfabghbs/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 e104311d2864a0e9f20fa72ceca19967 ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fcwpdjuccxtagjgdjyexwzkpafrr/SerialANE_Prefix.pch.gch -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bhrattglsybfrxfrsvfbukrciter/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 4c03e5b7e5acefb70d212c4d9e55d372 ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-efwkvrqnotblfofunkpclmcbhvpf/SerialANE_Prefix.pch.gch -ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dhouvpiemftqkdekcxslwwtyliyh/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 f5d25e600c71f848ad95c804fd665395 ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azybmrckhntbptdfrijbpnvkspys/SerialANE_Prefix.pch.gch -8dd7385c59ba6e33dd8be63eafcff4cf 04700fe1658d04f43920488d3220acf6 ffffffffffffffffffffffffffffffff 275 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/StaticAnalyzer/normal/i386/rs232.plist -8dd7385c5d6448c9dd8be63eafcfd9ad 6125632d12a2f72bada25d2949f47c4e ffffffffffffffffffffffffffffffff 275 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/StaticAnalyzer/normal/i386/SerialANE.plist -000000000e0b673e0000000000000173 8dd7385c1df2ca8bdd8be63eafcfd75d ffffffffffffffffffffffffffffffff 55304 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-acxozgsgcarlqfbagytukuxdigbu/SerialANE_Prefix.pch.pth -89457a82f330ef220a62840b07b03b48 8b565cefd91c40db8f7fe12fb7b07c4b ffffffffffffffffffffffffffffffff 0 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE -99bcd8100e578378e98745167a9fce07 8c9f1866c0caa95b250ef07b4b38f9bf ffffffffffffffffffffffffffffffff 19420 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE -a65ffb8561abd943bd202ba02a74200a c6d13f873d7a81118f453735082f0c53 ffffffffffffffffffffffffffffffff 7672 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/rs232.o -a65ffb856575e0a5bd202ba02a740f2e 4f94450584886ed88527b33e0ed8c6ad ffffffffffffffffffffffffffffffff 15700 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE.o -000000000e0b673e0000000000000173 a65ffb8525e34eeebd202ba02a743e2d ffffffffffffffffffffffffffffffff 1954160 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-emtvsdkqpeqabhalxjndvkytvfbk/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 f99a57b598a8d5d62b396a2292bd2d91 ffffffffffffffffffffffffffffffff 1954160 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-erwcteucreqrjcanmvlakgtsjeou/SerialANE_Prefix.pch.gch -000000000e0b673e0000000000000173 584a1ea21338dd52641e7e7063cf7bfc ffffffffffffffffffffffffffffffff 2191728 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dyugocxszpqrybdirpjfbtdlmwvr/SerialANE_Prefix.pch.gch -62ebf8845c7a0d7ec10739782d99a0aa 1ea57bd718239b4bb3a7fdd22607d6ae ffffffffffffffffffffffffffffffff 0 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE -81cb1ee2355f0d550d3ed8ae58de438b 9d5b87414b6abbc3155507121d2e1abe ffffffffffffffffffffffffffffffff 9444 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/rs232.o -81cb1ee2318135660d3ed8ae58de17b5 ffb07fc55ddd0a5bd4523e6a31f030b8 ffffffffffffffffffffffffffffffff 18504 /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE.o -000000000e0b673e0000000000000173 81cb1ee2716a43260d3ed8ae58de2960 ffffffffffffffffffffffffffffffff 2208112 /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dpvpozlpclhkprhcnnvafnwurwxr/SerialANE_Prefix.pch.gch diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE.hmap b/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE.hmap deleted file mode 100644 index f310a83..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE.hmap and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/build-state.dat b/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/build-state.dat deleted file mode 100644 index 9ebedbe..0000000 --- a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/build-state.dat +++ /dev/null @@ -1,838 +0,0 @@ -TSerialANE.framework -v7 -r0 -t354338855.410111 -cCheck dependencies -cSymLink /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/Current A -cSymLink /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Resources Versions/Current/Resources -cSymLink /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/SerialANE Versions/Current/SerialANE -cProcessInfoPlistFile /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist Info.plist -cCopyStringsFile /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -cProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -cCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.o /Users/quetwo/Documents/SerialANE/SerialANE.c normal i386 c com.apple.compilers.gcc.4_2 -cCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/rs232.o /Users/quetwo/Documents/SerialANE/rs232.c normal i386 c com.apple.compilers.gcc.4_2 -cLd /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE normal i386 -cGenerateDSYMFile /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework.dSYM /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE -cTouch /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework - -N/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR -c000000004EB7594B0000000001477B9C -t1320638795 -s21461916 - -N/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Headers/Adobe AIR.h -c000000004EB759450000000000000314 -t1320638789 -s788 -i - -N/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Headers/FlashRuntimeExtensions.h -c000000004EB759450000000000004D52 -t1320638789 -s19794 -i - -N/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac/Adobe AIR.framework/Adobe AIR -c000000004F664B8200000000014CD9DC -t1332104066 -s21813724 - -N/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac/Adobe AIR.framework/Headers/Adobe AIR.h -c000000004F664B7D0000000000000314 -t1332104061 -s788 -i - -N/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac/Adobe AIR.framework/Headers/FlashRuntimeExtensions.h -c000000004F664B7D0000000000004D54 -t1332104061 -s19796 -i - -N/Developer/SDKs/MacOSX10.5.sdk -c000000004AB44D2500000000000000EE -t1253330213 -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/fcntl.h -c0000000047BA993000000000000003EA -t1203411248 -s1002 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h -c0000000047BA9932000000000000380F -t1203411250 -s14351 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdio.h -c0000000047BA99310000000000003D1D -t1203411249 -s15645 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdlib.h -c0000000047BA99310000000000002A79 -t1203411249 -s10873 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h -c0000000047BA99320000000000001731 -t1203411250 -s5937 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/ioctl.h -c0000000047E883CF00000000000011D1 -t1206420431 -s4561 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/stat.h -c0000000047E883D100000000000047CE -t1206420433 -s18382 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h -c0000000047E883D2000000000000290F -t1206420434 -s10511 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/termios.h -c0000000047BA993000000000000004D4 -t1203411248 -s1236 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/unistd.h -c0000000047BA993200000000000053FF -t1203411250 -s21503 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/gcc/i686-apple-darwin10/4.2.1/include/limits.h -c000000004A11EAF10000000000000C7E -t1242688241 -s3198 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/gcc/i686-apple-darwin10/4.2.1/include/stdint.h -c000000004A11EAF1000000000000190C -t1242688241 -s6412 - -N/Developer/SDKs/MacOSX10.6.sdk -c000000004ABBF0FD00000000000000EE -t1253830909 -s238 - -N/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h -c0000000040C4AA6800000000000001E5 -t1086630504 -s485 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/fcntl.h -c000000004A5C14A600000000000003EA -t1247548582 -s1002 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/pthread.h -c000000004A5C14A700000000000038F0 -t1247548583 -s14576 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdio.h -c000000004A5C14A70000000000004174 -t1247548583 -s16756 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdlib.h -c000000004A5C14A70000000000002DF5 -t1247548583 -s11765 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/string.h -c000000004A5C14A70000000000001731 -t1247548583 -s5937 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/sys/ioctl.h -c000000004A73D651000000000000116C -t1249105489 -s4460 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/sys/stat.h -c000000004A73D6550000000000004A1D -t1249105493 -s18973 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/sys/types.h -c000000004A73D6550000000000002905 -t1249105493 -s10501 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/termios.h -c000000004A5C14A600000000000004D4 -t1247548582 -s1236 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/unistd.h -c000000004A5C14A7000000000000563E -t1247548583 -s22078 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/lib/gcc/i686-apple-darwin10/4.2.1/include/limits.h -c000000004A11EB240000000000000C7E -t1242688292 -s3198 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/lib/gcc/i686-apple-darwin10/4.2.1/include/stdint.h -c000000004A11EB24000000000000190C -t1242688292 -s6412 - -N/System/Library/Frameworks/Cocoa.framework/Cocoa -c000000004A1F2D63000000000000A5E0 -t1243557219 -s42464 - -N/Users/quetwo/Documents/SerialANE/English.lproj/InfoPlist.strings -c000000004ECFCD560000000000000030 -t1322241366 -s48 - -N/Users/quetwo/Documents/SerialANE/SerialANE.c -c000000004F6E909D00000000000023F1 -t1332646045 -s9201 -i"SerialANE.h" -i"stdio.h" -i"pthread.h" -i"stdlib.h" -i"stdint.h" -i"String.h" -i"rs232.h" -i"FlashRuntimeExtensions.h" -i - -N/Users/quetwo/Documents/SerialANE/SerialANE.h -c000000004F6E565A0000000000000434 -t1332631130 -s1076 -i - -N/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -c000000004ECFCD560000000000000096 -t1322241366 -s150 -i - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework -t1332646055 -s170 - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework.dSYM -t1332646055 -s102 - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Resources -t3 -s26 - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/SerialANE -t3 -s26 - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -t1332646055 -s92 - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist -t1332646055 -s720 - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE -t1332646055 -s18836 - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/Current -t3 -s1 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE -t1322243566 -s19420 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList -c000000004F6E90A700000000000000F0 -t1332646055 -s240 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.o -t1332646055 -s15692 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/rs232.o -t1332646055 -s7092 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE -t2 -s0 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE.LinkFileList -c000000004ECFD55C00000000000000EE -t1322243420 -s238 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE.o -t1322243566 -s15700 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/rs232.o -t1322243566 -s7672 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE -t2 -s0 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE.LinkFileList -c000000004ECFD55C00000000000000F4 -t1322243420 -s244 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE.o -t1322243422 -s18504 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/rs232.o -t1322243422 -s9444 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/StaticAnalyzer/normal/i386/SerialANE.plist -t1322251564 -s275 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/StaticAnalyzer/normal/i386/rs232.plist -t1322251564 -s275 - -N/Users/quetwo/Documents/SerialANE/rs232.c -c000000004ED2CC1F0000000000002793 -t1322437663 -s10131 -i"rs232.h" - -N/Users/quetwo/Documents/SerialANE/rs232.h -c000000004ED24F97000000000000070C -t1322405783 -s1804 -i -i -i -i -i -i -i -i -i -i - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-acxozgsgcarlqfbagytukuxdigbu/SerialANE_Prefix.pch.pth -t1322248702 -s55304 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azybmrckhntbptdfrijbpnvkspys/SerialANE_Prefix.pch.gch -t1322372492 -s2191728 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bezqoamocjpgvgbsisfytfabghbs/SerialANE_Prefix.pch.gch -t1332644261 -s2191728 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bhrattglsybfrxfrsvfbukrciter/SerialANE_Prefix.pch.gch -t2 -s0 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dhouvpiemftqkdekcxslwwtyliyh/SerialANE_Prefix.pch.gch -t2 -s0 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dhtdonjkunotobdusliuhncxyuli/SerialANE_Prefix.pch.gch -t2 -s0 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dpvpozlpclhkprhcnnvafnwurwxr/SerialANE_Prefix.pch.gch -t1322243421 -s2208112 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dvymgnuyjkhxbdftuahrxcbioodb/SerialANE_Prefix.pch.gch -t1332644329 -s2191728 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dyugocxszpqrybdirpjfbtdlmwvr/SerialANE_Prefix.pch.gch -t1322243421 -s2191728 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-efwkvrqnotblfofunkpclmcbhvpf/SerialANE_Prefix.pch.gch -t1322374509 -s2191728 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-emtvsdkqpeqabhalxjndvkytvfbk/SerialANE_Prefix.pch.gch -t1322243565 -s1954160 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-erwcteucreqrjcanmvlakgtsjeou/SerialANE_Prefix.pch.gch -t1322243421 -s1954160 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fcwpdjuccxtagjgdjyexwzkpafrr/SerialANE_Prefix.pch.gch -t1332644208 -s2191728 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch.gch -t1332646055 -s2191728 - -NInfo.plist -c000000004ECFCD560000000000000357 -t1322241366 -s855 - -CAnalyze /Users/quetwo/Documents/SerialANE/SerialANE.c -s343944364.377051 -e343944364.477251 -r1 -xAnalyze -x/Users/quetwo/Documents/SerialANE/SerialANE.c -lSLF07#2@53"Analyze /Users/quetwo/Documents/SerialANE/SerialANE.c343944364#343944364#0(0"0(0#0#45"/Users/quetwo/Documents/SerialANE/SerialANE.c4300885448#1622" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-acxozgsgcarlqfbagytukuxdigbu/SerialANE_Prefix.pch --analyze /Users/quetwo/Documents/SerialANE/SerialANE.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/StaticAnalyzer/normal/i386/SerialANE.plist 0# - -CAnalyze /Users/quetwo/Documents/SerialANE/rs232.c -s343944364.378210 -e343944364.427058 -r1 -xAnalyze -x/Users/quetwo/Documents/SerialANE/rs232.c -lSLF07#2@49"Analyze /Users/quetwo/Documents/SerialANE/rs232.c343944364#343944364#0(0"0(0#0#41"/Users/quetwo/Documents/SerialANE/rs232.c4300885448#1614" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-acxozgsgcarlqfbagytukuxdigbu/SerialANE_Prefix.pch --analyze /Users/quetwo/Documents/SerialANE/rs232.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/StaticAnalyzer/normal/i386/rs232.plist 0# - -CCheck dependencies -r0 -lSLF07#2@18"Check dependencies354338855#354338855#0(0"0(0#1#0"4300885448#0"0# - -CCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.o /Users/quetwo/Documents/SerialANE/SerialANE.c normal i386 c com.apple.compilers.gcc.4_2 -s354338855.239885 -e354338855.328881 -r1 -xCompileC -xbuild/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.o -x/Users/quetwo/Documents/SerialANE/SerialANE.c -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@53"Compile /Users/quetwo/Documents/SerialANE/SerialANE.c354338855#354338855#0(0"0(0#0#45"/Users/quetwo/Documents/SerialANE/SerialANE.c4300885448#1607" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -fvisibility=hidden -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/SerialANE.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.o 0# - -CCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/rs232.o /Users/quetwo/Documents/SerialANE/rs232.c normal i386 c com.apple.compilers.gcc.4_2 -s354338855.240897 -e354338855.299018 -r1 -xCompileC -xbuild/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/rs232.o -x/Users/quetwo/Documents/SerialANE/rs232.c -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@49"Compile /Users/quetwo/Documents/SerialANE/rs232.c354338855#354338855#0(0"0(0#0#41"/Users/quetwo/Documents/SerialANE/rs232.c4300885448#1599" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -fvisibility=hidden -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/rs232.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/rs232.o 0# - -CCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE.o /Users/quetwo/Documents/SerialANE/SerialANE.c normal ppc c com.apple.compilers.gcc.4_2 -s343936366.010392 -e343936366.227269 -r1 -xCompileC -xbuild/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE.o -x/Users/quetwo/Documents/SerialANE/SerialANE.c -xnormal -xppc -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@53"Compile /Users/quetwo/Documents/SerialANE/SerialANE.c343936366#343936366#0(0"0(0#0#45"/Users/quetwo/Documents/SerialANE/SerialANE.c4300885448#1562" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch ppc -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G5 -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/ppc -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-emtvsdkqpeqabhalxjndvkytvfbk/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/SerialANE.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE.o 0# - -CCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/rs232.o /Users/quetwo/Documents/SerialANE/rs232.c normal ppc c com.apple.compilers.gcc.4_2 -s343936366.185367 -e343936366.270719 -r1 -xCompileC -xbuild/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/rs232.o -x/Users/quetwo/Documents/SerialANE/rs232.c -xnormal -xppc -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@49"Compile /Users/quetwo/Documents/SerialANE/rs232.c343936366#343936366#0(0"0(0#0#41"/Users/quetwo/Documents/SerialANE/rs232.c4300885448#1554" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch ppc -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G5 -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/ppc -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-emtvsdkqpeqabhalxjndvkytvfbk/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/rs232.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/rs232.o 0# - -CCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE.o /Users/quetwo/Documents/SerialANE/SerialANE.c normal x86_64 c com.apple.compilers.gcc.4_2 -s343936222.093918 -e343936222.500914 -r1 -xCompileC -xbuild/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE.o -x/Users/quetwo/Documents/SerialANE/SerialANE.c -xnormal -xx86_64 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@53"Compile /Users/quetwo/Documents/SerialANE/SerialANE.c343936222#343936222#0(0"0(0#0#45"/Users/quetwo/Documents/SerialANE/SerialANE.c4300885448#1574" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/x86_64 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dpvpozlpclhkprhcnnvafnwurwxr/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/SerialANE.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE.o 0# - -CCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/rs232.o /Users/quetwo/Documents/SerialANE/rs232.c normal x86_64 c com.apple.compilers.gcc.4_2 -s343936222.095386 -e343936222.433747 -r1 -xCompileC -xbuild/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/rs232.o -x/Users/quetwo/Documents/SerialANE/rs232.c -xnormal -xx86_64 -xc -xcom.apple.compilers.gcc.4_2 -o/Users/quetwo/Documents/SerialANE/rs232.c: In function 'PollComport': -o/Users/quetwo/Documents/SerialANE/rs232.c:141: warning: comparison is always false due to limited range of data type -lSLF07#2@49"Compile /Users/quetwo/Documents/SerialANE/rs232.c343936222#343936222#0(187"/Users/quetwo/Documents/SerialANE/rs232.c: In function 'PollComport': /Users/quetwo/Documents/SerialANE/rs232.c:141: warning: comparison is always false due to limited range of data type 1(22@60"Comparison is always false due to limited range of data type343936222#70#117#0(6@41"/Users/quetwo/Documents/SerialANE/rs232.c343936018#141#0#141#0#0"0(0#0#41"/Users/quetwo/Documents/SerialANE/rs232.c4300885448#1566" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/x86_64 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dpvpozlpclhkprhcnnvafnwurwxr/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/rs232.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/rs232.o 0# - -CCopyStringsFile /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -s354338855.046798 -e354338855.145398 -r1 -xCopyStringsFile -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -xEnglish.lproj/InfoPlist.strings -lSLF07#2@36"Copy English.lproj/InfoPlist.strings354338855#354338855#0(0"0(0#0#65"/Users/quetwo/Documents/SerialANE/English.lproj/InfoPlist.strings4300885448#367" cd /Users/quetwo/Documents/SerialANE 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/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj 0# - -CCreateUniversalBinary /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE normal "i386 ppc" -r0 - -CCreateUniversalBinary /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE normal "x86_64 i386 ppc" -r0 - -CGenerateDSYMFile /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework.dSYM /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE -s354338855.394881 -e354338855.407139 -r1 -xGenerateDSYMFile -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework.dSYM -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE -lSLF07#2@110"GenerateDSYMFile build/Release/SerialANE.framework.dSYM build/Release/SerialANE.framework/Versions/A/SerialANE354338855#354338855#0(0"0(0#0#88"/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE4300885448#238" cd /Users/quetwo/Documents/SerialANE /Developer/usr/bin/dsymutil /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE -o /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework.dSYM 0# - -CLd /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE normal i386 -s354338855.328975 -e354338855.394774 -r1 -xLd -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE -xnormal -xi386 -lSLF07#2@93"Link /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE354338855#354338855#0(0"0(0#0#0"4300885448#1089" cd /Users/quetwo/Documents/SerialANE setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/gcc-4.2 -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/quetwo/Documents/SerialANE/build/Release "-L/Developer/SDKs/MacOSX10.5.sdk/Library/Frameworks/Adobe AIR.framework/Versions/1.0" -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac" -filelist /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList -install_name /Users/quetwo/Library/Frameworks/SerialANE.framework/Versions/A/SerialANE -Xlinker -rpath -Xlinker @executable_path/../runtimes/air/mac -Xlinker -rpath -Xlinker @executable_path/../Frameworks -Xlinker -rpath -Xlinker /Library/Frameworks -mmacosx-version-min=10.5 -flat_namespace -weak_framework "Adobe AIR" -framework Cocoa -framework "Adobe AIR" -single_module -compatibility_version 1 -current_version 1 -o /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE 0# - -CLd /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE normal i386 -s343936366.050828 -e343936366.185259 -r1 -xLd -x/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE -xnormal -xi386 -lSLF07#2@124"Link /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE343936366#343936366#0(0"0(0#0#0"4300885448#826" cd /Users/quetwo/Documents/SerialANE setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/gcc-4.2 -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/quetwo/Documents/SerialANE/build/Release -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -filelist /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList -install_name /Users/quetwo/Library/Frameworks/SerialANE.framework/Versions/A/SerialANE -mmacosx-version-min=10.5 -framework Cocoa -framework "Adobe AIR" -single_module -compatibility_version 1 -current_version 1 -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE 0# - -CLd /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE normal ppc -s343936366.270825 -e343936366.381361 -r0 -xLd -x/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE -xnormal -xppc -old: warning: in /Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR, file is not of required architecture -oUndefined symbols: -o "_FRENewObjectFromUTF8", referenced from: -o _getBytesAsString in SerialANE.o -o _getBytesAsArray in SerialANE.o -o "_FREGetObjectAsUint32", referenced from: -o _sendByte in SerialANE.o -o "_FRESetArrayLength", referenced from: -o _getBytesAsArray in SerialANE.o -o "_FREDispatchStatusEventAsync", referenced from: -o _pollForData in SerialANE.o -o "_FREAcquireByteArray", referenced from: -o _sendByteArray in SerialANE.o -o _getBytesAsByteArray in SerialANE.o -o "_FRESetArrayElementAt", referenced from: -o _getBytesAsArray in SerialANE.o -o "_FREReleaseByteArray", referenced from: -o _sendByteArray in SerialANE.o -o _getBytesAsByteArray in SerialANE.o -o "_FRENewObjectFromUint32", referenced from: -o _getByte in SerialANE.o -o "_FRENewObjectFromBool", referenced from: -o _setupPort in SerialANE.o -o _isSupported in SerialANE.o -o _sendByteArray in SerialANE.o -o _sendString in SerialANE.o -o _sendByte in SerialANE.o -o _getBytesAsByteArray in SerialANE.o -o "_FRENewObjectFromInt32", referenced from: -o _getAvailableBytes in SerialANE.o -o "_FREGetObjectAsInt32", referenced from: -o _setupPort in SerialANE.o -o _setupPort in SerialANE.o -o "_FREGetObjectAsUTF8", referenced from: -o _sendString in SerialANE.o -o "_FRENewObject", referenced from: -o _getBytesAsArray in SerialANE.o -old: symbol(s) not found -ocollect2: ld returned 1 exit status -lSLF07#2@123"Link /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE343936366#343936366#0(1582"ld: warning: in /Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR, file is not of required architecture Undefined symbols: "_FRENewObjectFromUTF8", referenced from: _getBytesAsString in SerialANE.o _getBytesAsArray in SerialANE.o "_FREGetObjectAsUint32", referenced from: _sendByte in SerialANE.o "_FRESetArrayLength", referenced from: _getBytesAsArray in SerialANE.o "_FREDispatchStatusEventAsync", referenced from: _pollForData in SerialANE.o "_FREAcquireByteArray", referenced from: _sendByteArray in SerialANE.o _getBytesAsByteArray in SerialANE.o "_FRESetArrayElementAt", referenced from: _getBytesAsArray in SerialANE.o "_FREReleaseByteArray", referenced from: _sendByteArray in SerialANE.o _getBytesAsByteArray in SerialANE.o "_FRENewObjectFromUint32", referenced from: _getByte in SerialANE.o "_FRENewObjectFromBool", referenced from: _setupPort in SerialANE.o _isSupported in SerialANE.o _sendByteArray in SerialANE.o _sendString in SerialANE.o _sendByte in SerialANE.o _getBytesAsByteArray in SerialANE.o "_FRENewObjectFromInt32", referenced from: _getAvailableBytes in SerialANE.o "_FREGetObjectAsInt32", referenced from: _setupPort in SerialANE.o _setupPort in SerialANE.o "_FREGetObjectAsUTF8", referenced from: _sendString in SerialANE.o "_FRENewObject", referenced from: _getBytesAsArray in SerialANE.o ld: symbol(s) not found collect2: ld returned 1 exit status 38(22@136"In /Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR, file is not of required architecture343936366#0#150#0(6@0"343936366#0#0#0#0#0"0(4@41""_FRENewObjectFromUTF8", referenced from:343936366#169#44#0(6@0"343936366#0#0#0#0#0"0(13@32"_getBytesAsString in SerialANE.o343936366#213#39#0(6@0"343936366#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936366#252#38#0(6@0"343936366#0#0#0#0#0"0(4@41""_FREGetObjectAsUint32", referenced from:343936366#290#44#0(6@0"343936366#0#0#0#0#0"0(13@24"_sendByte in SerialANE.o343936366#334#31#0(6@0"343936366#0#0#0#0#0"0(4@38""_FRESetArrayLength", referenced from:343936366#365#41#0(6@0"343936366#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936366#406#38#0(6@0"343936366#0#0#0#0#0"0(4@48""_FREDispatchStatusEventAsync", referenced from:343936366#444#51#0(6@0"343936366#0#0#0#0#0"0(13@27"_pollForData in SerialANE.o343936366#495#34#0(6@0"343936366#0#0#0#0#0"0(4@40""_FREAcquireByteArray", referenced from:343936366#529#43#0(6@0"343936366#0#0#0#0#0"0(13@29"_sendByteArray in SerialANE.o343936366#572#36#0(6@0"343936366#0#0#0#0#0"0(13@35"_getBytesAsByteArray in SerialANE.o343936366#608#42#0(6@0"343936366#0#0#0#0#0"0(4@41""_FRESetArrayElementAt", referenced from:343936366#650#44#0(6@0"343936366#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936366#694#38#0(6@0"343936366#0#0#0#0#0"0(4@40""_FREReleaseByteArray", referenced from:343936366#732#43#0(6@0"343936366#0#0#0#0#0"0(13@29"_sendByteArray in SerialANE.o343936366#775#36#0(6@0"343936366#0#0#0#0#0"0(13@35"_getBytesAsByteArray in SerialANE.o343936366#811#42#0(6@0"343936366#0#0#0#0#0"0(4@43""_FRENewObjectFromUint32", referenced from:343936366#853#46#0(6@0"343936366#0#0#0#0#0"0(13@23"_getByte in SerialANE.o343936366#899#30#0(6@0"343936366#0#0#0#0#0"0(4@41""_FRENewObjectFromBool", referenced from:343936366#929#44#0(6@0"343936366#0#0#0#0#0"0(13@25"_setupPort in SerialANE.o343936366#973#32#0(6@0"343936366#0#0#0#0#0"0(13@27"_isSupported in SerialANE.o343936366#1005#34#0(6@0"343936366#0#0#0#0#0"0(13@29"_sendByteArray in SerialANE.o343936366#1039#36#0(6@0"343936366#0#0#0#0#0"0(13@26"_sendString in SerialANE.o343936366#1075#33#0(6@0"343936366#0#0#0#0#0"0(13@24"_sendByte in SerialANE.o343936366#1108#31#0(6@0"343936366#0#0#0#0#0"0(13@35"_getBytesAsByteArray in SerialANE.o343936366#1139#42#0(6@0"343936366#0#0#0#0#0"0(4@42""_FRENewObjectFromInt32", referenced from:343936366#1181#45#0(6@0"343936366#0#0#0#0#0"0(13@33"_getAvailableBytes in SerialANE.o343936366#1226#40#0(6@0"343936366#0#0#0#0#0"0(4@40""_FREGetObjectAsInt32", referenced from:343936366#1266#43#0(6@0"343936366#0#0#0#0#0"0(13@25"_setupPort in SerialANE.o343936366#1309#32#0(6@0"343936366#0#0#0#0#0"0(13@25"_setupPort in SerialANE.o343936366#1341#32#0(6@0"343936366#0#0#0#0#0"0(4@39""_FREGetObjectAsUTF8", referenced from:343936366#1373#42#0(6@0"343936366#0#0#0#0#0"0(13@26"_sendString in SerialANE.o343936366#1415#33#0(6@0"343936366#0#0#0#0#0"0(4@33""_FRENewObject", referenced from:343936366#1448#36#0(6@0"343936366#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936366#1484#38#0(6@0"343936366#0#0#0#0#0"0(13@19"Symbol(s) not found343936366#1522#24#0(6@0"343936366#0#0#0#0#0"0(13@35"Collect2: ld returned 1 exit status343936366#1546#36#0(6@0"343936366#0#0#0#0#0"0(0#0#0"4300885448#823" cd /Users/quetwo/Documents/SerialANE setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/gcc-4.2 -arch ppc -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/quetwo/Documents/SerialANE/build/Release -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -filelist /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE.LinkFileList -install_name /Users/quetwo/Library/Frameworks/SerialANE.framework/Versions/A/SerialANE -mmacosx-version-min=10.5 -framework Cocoa -framework "Adobe AIR" -single_module -compatibility_version 1 -current_version 1 -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE 1# - -CLd /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE normal x86_64 -s343936222.501054 -e343936222.603189 -r0 -xLd -x/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE -xnormal -xx86_64 -old: warning: in /Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR, file is not of required architecture -oUndefined symbols: -o "_FRENewObjectFromUTF8", referenced from: -o _getBytesAsString in SerialANE.o -o _getBytesAsArray in SerialANE.o -o "_FREGetObjectAsUint32", referenced from: -o _sendByte in SerialANE.o -o "_FRESetArrayLength", referenced from: -o _getBytesAsArray in SerialANE.o -o "_FREDispatchStatusEventAsync", referenced from: -o _pollForData in SerialANE.o -o "_FREAcquireByteArray", referenced from: -o _sendByteArray in SerialANE.o -o _getBytesAsByteArray in SerialANE.o -o "_FRESetArrayElementAt", referenced from: -o _getBytesAsArray in SerialANE.o -o "_FREReleaseByteArray", referenced from: -o _sendByteArray in SerialANE.o -o _getBytesAsByteArray in SerialANE.o -o "_FRENewObjectFromUint32", referenced from: -o _getByte in SerialANE.o -o "_FRENewObjectFromBool", referenced from: -o _setupPort in SerialANE.o -o _isSupported in SerialANE.o -o _sendByteArray in SerialANE.o -o _sendString in SerialANE.o -o _sendByte in SerialANE.o -o _getBytesAsByteArray in SerialANE.o -o "_FRENewObjectFromInt32", referenced from: -o _getAvailableBytes in SerialANE.o -o "_FREGetObjectAsInt32", referenced from: -o _setupPort in SerialANE.o -o _setupPort in SerialANE.o -o "_FREGetObjectAsUTF8", referenced from: -o _sendString in SerialANE.o -o "_FRENewObject", referenced from: -o _getBytesAsArray in SerialANE.o -old: symbol(s) not found -ocollect2: ld returned 1 exit status -lSLF07#2@126"Link /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE343936222#343936222#0(1582"ld: warning: in /Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR, file is not of required architecture Undefined symbols: "_FRENewObjectFromUTF8", referenced from: _getBytesAsString in SerialANE.o _getBytesAsArray in SerialANE.o "_FREGetObjectAsUint32", referenced from: _sendByte in SerialANE.o "_FRESetArrayLength", referenced from: _getBytesAsArray in SerialANE.o "_FREDispatchStatusEventAsync", referenced from: _pollForData in SerialANE.o "_FREAcquireByteArray", referenced from: _sendByteArray in SerialANE.o _getBytesAsByteArray in SerialANE.o "_FRESetArrayElementAt", referenced from: _getBytesAsArray in SerialANE.o "_FREReleaseByteArray", referenced from: _sendByteArray in SerialANE.o _getBytesAsByteArray in SerialANE.o "_FRENewObjectFromUint32", referenced from: _getByte in SerialANE.o "_FRENewObjectFromBool", referenced from: _setupPort in SerialANE.o _isSupported in SerialANE.o _sendByteArray in SerialANE.o _sendString in SerialANE.o _sendByte in SerialANE.o _getBytesAsByteArray in SerialANE.o "_FRENewObjectFromInt32", referenced from: _getAvailableBytes in SerialANE.o "_FREGetObjectAsInt32", referenced from: _setupPort in SerialANE.o _setupPort in SerialANE.o "_FREGetObjectAsUTF8", referenced from: _sendString in SerialANE.o "_FRENewObject", referenced from: _getBytesAsArray in SerialANE.o ld: symbol(s) not found collect2: ld returned 1 exit status 38(22@136"In /Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR, file is not of required architecture343936222#0#150#0(6@0"343936222#0#0#0#0#0"0(4@41""_FRENewObjectFromUTF8", referenced from:343936222#169#44#0(6@0"343936222#0#0#0#0#0"0(13@32"_getBytesAsString in SerialANE.o343936222#213#39#0(6@0"343936222#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936222#252#38#0(6@0"343936222#0#0#0#0#0"0(4@41""_FREGetObjectAsUint32", referenced from:343936222#290#44#0(6@0"343936222#0#0#0#0#0"0(13@24"_sendByte in SerialANE.o343936222#334#31#0(6@0"343936222#0#0#0#0#0"0(4@38""_FRESetArrayLength", referenced from:343936222#365#41#0(6@0"343936222#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936222#406#38#0(6@0"343936222#0#0#0#0#0"0(4@48""_FREDispatchStatusEventAsync", referenced from:343936222#444#51#0(6@0"343936222#0#0#0#0#0"0(13@27"_pollForData in SerialANE.o343936222#495#34#0(6@0"343936222#0#0#0#0#0"0(4@40""_FREAcquireByteArray", referenced from:343936222#529#43#0(6@0"343936222#0#0#0#0#0"0(13@29"_sendByteArray in SerialANE.o343936222#572#36#0(6@0"343936222#0#0#0#0#0"0(13@35"_getBytesAsByteArray in SerialANE.o343936222#608#42#0(6@0"343936222#0#0#0#0#0"0(4@41""_FRESetArrayElementAt", referenced from:343936222#650#44#0(6@0"343936222#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936222#694#38#0(6@0"343936222#0#0#0#0#0"0(4@40""_FREReleaseByteArray", referenced from:343936222#732#43#0(6@0"343936222#0#0#0#0#0"0(13@29"_sendByteArray in SerialANE.o343936222#775#36#0(6@0"343936222#0#0#0#0#0"0(13@35"_getBytesAsByteArray in SerialANE.o343936222#811#42#0(6@0"343936222#0#0#0#0#0"0(4@43""_FRENewObjectFromUint32", referenced from:343936222#853#46#0(6@0"343936222#0#0#0#0#0"0(13@23"_getByte in SerialANE.o343936222#899#30#0(6@0"343936222#0#0#0#0#0"0(4@41""_FRENewObjectFromBool", referenced from:343936222#929#44#0(6@0"343936222#0#0#0#0#0"0(13@25"_setupPort in SerialANE.o343936222#973#32#0(6@0"343936222#0#0#0#0#0"0(13@27"_isSupported in SerialANE.o343936222#1005#34#0(6@0"343936222#0#0#0#0#0"0(13@29"_sendByteArray in SerialANE.o343936222#1039#36#0(6@0"343936222#0#0#0#0#0"0(13@26"_sendString in SerialANE.o343936222#1075#33#0(6@0"343936222#0#0#0#0#0"0(13@24"_sendByte in SerialANE.o343936222#1108#31#0(6@0"343936222#0#0#0#0#0"0(13@35"_getBytesAsByteArray in SerialANE.o343936222#1139#42#0(6@0"343936222#0#0#0#0#0"0(4@42""_FRENewObjectFromInt32", referenced from:343936222#1181#45#0(6@0"343936222#0#0#0#0#0"0(13@33"_getAvailableBytes in SerialANE.o343936222#1226#40#0(6@0"343936222#0#0#0#0#0"0(4@40""_FREGetObjectAsInt32", referenced from:343936222#1266#43#0(6@0"343936222#0#0#0#0#0"0(13@25"_setupPort in SerialANE.o343936222#1309#32#0(6@0"343936222#0#0#0#0#0"0(13@25"_setupPort in SerialANE.o343936222#1341#32#0(6@0"343936222#0#0#0#0#0"0(4@39""_FREGetObjectAsUTF8", referenced from:343936222#1373#42#0(6@0"343936222#0#0#0#0#0"0(13@26"_sendString in SerialANE.o343936222#1415#33#0(6@0"343936222#0#0#0#0#0"0(4@33""_FRENewObject", referenced from:343936222#1448#36#0(6@0"343936222#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936222#1484#38#0(6@0"343936222#0#0#0#0#0"0(13@19"Symbol(s) not found343936222#1522#24#0(6@0"343936222#0#0#0#0#0"0(13@35"Collect2: ld returned 1 exit status343936222#1546#36#0(6@0"343936222#0#0#0#0#0"0(0#0#0"4300885448#832" cd /Users/quetwo/Documents/SerialANE setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/gcc-4.2 -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/quetwo/Documents/SerialANE/build/Release -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -filelist /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE.LinkFileList -install_name /Users/quetwo/Library/Frameworks/SerialANE.framework/Versions/A/SerialANE -mmacosx-version-min=10.6 -framework Cocoa -framework "Adobe AIR" -single_module -compatibility_version 1 -current_version 1 -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE 1# - -CProcessInfoPlistFile /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist Info.plist -s354338855.042923 -e354338855.046716 -r1 -xProcessInfoPlistFile -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist -xInfo.plist -lSLF07#2@18"Process Info.plist354338855#354338855#0(0"0(0#0#44"/Users/quetwo/Documents/SerialANE/Info.plist4300885448#222" cd /Users/quetwo/Documents/SerialANE builtin-infoPlistUtility Info.plist -expandbuildsettings -platform macosx -o /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-acxozgsgcarlqfbagytukuxdigbu/SerialANE_Prefix.pch.pth SerialANE_Prefix.pch normal i386 c com.apple.compilers.llvm.clang.1_0.analyzer -s343941502.143445 -e343941502.217327 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-acxozgsgcarlqfbagytukuxdigbu/SerialANE_Prefix.pch.pth -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.llvm.clang.1_0.analyzer -lSLF07#2@31"Precompile SerialANE_Prefix.pch343941502#343941502#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1493" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-acxozgsgcarlqfbagytukuxdigbu/SerialANE_Prefix.pch.pth 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azybmrckhntbptdfrijbpnvkspys/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s344065292.030153 -e344065292.228416 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azybmrckhntbptdfrijbpnvkspys/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch344065292#344065292#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1457" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azybmrckhntbptdfrijbpnvkspys/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bezqoamocjpgvgbsisfytfabghbs/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s354337061.284517 -e354337061.657505 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bezqoamocjpgvgbsisfytfabghbs/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch354337061#354337061#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1478" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release -F/Developer/SDKs/MacOSX10.5.sdk/Library/Frameworks -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -fvisibility=hidden -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bezqoamocjpgvgbsisfytfabghbs/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bhrattglsybfrxfrsvfbukrciter/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -r0 - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dhouvpiemftqkdekcxslwwtyliyh/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -r0 - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dhtdonjkunotobdusliuhncxyuli/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -r0 - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dpvpozlpclhkprhcnnvafnwurwxr/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal x86_64 c com.apple.compilers.gcc.4_2 -s343936221.200926 -e343936221.430145 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dpvpozlpclhkprhcnnvafnwurwxr/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xx86_64 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch343936221#343936221#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1461" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/x86_64 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dpvpozlpclhkprhcnnvafnwurwxr/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dvymgnuyjkhxbdftuahrxcbioodb/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s354337129.510523 -e354337129.588375 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dvymgnuyjkhxbdftuahrxcbioodb/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch354337129#354337129#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1448" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release -F/Library/Frameworks -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -fvisibility=hidden -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dvymgnuyjkhxbdftuahrxcbioodb/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dyugocxszpqrybdirpjfbtdlmwvr/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s343936221.201833 -e343936221.357376 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dyugocxszpqrybdirpjfbtdlmwvr/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch343936221#343936221#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1457" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dyugocxszpqrybdirpjfbtdlmwvr/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-efwkvrqnotblfofunkpclmcbhvpf/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s344067309.033484 -e344067309.098789 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-efwkvrqnotblfofunkpclmcbhvpf/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch344067309#344067309#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1477" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -fvisibility=hidden -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-efwkvrqnotblfofunkpclmcbhvpf/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-emtvsdkqpeqabhalxjndvkytvfbk/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal ppc c com.apple.compilers.gcc.4_2 -s343936365.774815 -e343936365.881519 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-emtvsdkqpeqabhalxjndvkytvfbk/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xppc -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch343936365#343936365#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1452" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch ppc -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G5 -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/ppc -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-emtvsdkqpeqabhalxjndvkytvfbk/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-erwcteucreqrjcanmvlakgtsjeou/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal ppc c com.apple.compilers.gcc.4_2 -s343936221.357498 -e343936222.093814 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-erwcteucreqrjcanmvlakgtsjeou/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xppc -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch343936221#343936222#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1452" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch ppc -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mtune=G5 -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/ppc -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-erwcteucreqrjcanmvlakgtsjeou/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fcwpdjuccxtagjgdjyexwzkpafrr/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s354337008.134866 -e354337008.325929 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fcwpdjuccxtagjgdjyexwzkpafrr/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch354337008#354337008#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1426" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -fvisibility=hidden -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fcwpdjuccxtagjgdjyexwzkpafrr/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s354338855.145521 -e354338855.239786 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch354338855#354338855#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1496" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -fvisibility=hidden -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch.gch 0# - -CSymLink /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Resources Versions/Current/Resources -s354338855.034368 -e354338855.042851 -r1 -xSymLink -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Resources -xVersions/Current/Resources -lSLF07#2@85"Process /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Resources354338855#354338855#0(0"0(0#0#0"4300885448#162" cd /Users/quetwo/Documents/SerialANE /bin/ln -sf Versions/Current/Resources /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Resources 0# - -CSymLink /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/SerialANE Versions/Current/SerialANE -s354338855.038523 -e354338855.042714 -r1 -xSymLink -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/SerialANE -xVersions/Current/SerialANE -lSLF07#2@85"Process /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/SerialANE354338855#354338855#0(0"0(0#0#0"4300885448#162" cd /Users/quetwo/Documents/SerialANE /bin/ln -sf Versions/Current/SerialANE /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/SerialANE 0# - -CSymLink /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/Current A -s354338855.033138 -e354338855.038432 -r1 -xSymLink -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/Current -xA -lSLF07#2@92"Process /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/Current354338855#354338855#0(0"0(0#0#0"4300885448#144" cd /Users/quetwo/Documents/SerialANE /bin/ln -sf A /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/Current 0# - -CTouch /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework -s354338855.407224 -e354338855.410072 -r1 -xTouch -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework -lSLF07#2@73"Touch /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework354338855#354338855#0(0"0(0#0#0"4300885448#131" cd /Users/quetwo/Documents/SerialANE /usr/bin/touch -c /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework 0# - diff --git a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/build-state~.dat b/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/build-state~.dat deleted file mode 100644 index 9ebedbe..0000000 --- a/native-extension/MacOS-x86/build/SerialANE.build/Release/SerialANE.framework.build/build-state~.dat +++ /dev/null @@ -1,838 +0,0 @@ -TSerialANE.framework -v7 -r0 -t354338855.410111 -cCheck dependencies -cSymLink /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/Current A -cSymLink /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Resources Versions/Current/Resources -cSymLink /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/SerialANE Versions/Current/SerialANE -cProcessInfoPlistFile /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist Info.plist -cCopyStringsFile /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -cProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -cCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.o /Users/quetwo/Documents/SerialANE/SerialANE.c normal i386 c com.apple.compilers.gcc.4_2 -cCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/rs232.o /Users/quetwo/Documents/SerialANE/rs232.c normal i386 c com.apple.compilers.gcc.4_2 -cLd /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE normal i386 -cGenerateDSYMFile /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework.dSYM /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE -cTouch /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework - -N/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR -c000000004EB7594B0000000001477B9C -t1320638795 -s21461916 - -N/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Headers/Adobe AIR.h -c000000004EB759450000000000000314 -t1320638789 -s788 -i - -N/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Headers/FlashRuntimeExtensions.h -c000000004EB759450000000000004D52 -t1320638789 -s19794 -i - -N/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac/Adobe AIR.framework/Adobe AIR -c000000004F664B8200000000014CD9DC -t1332104066 -s21813724 - -N/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac/Adobe AIR.framework/Headers/Adobe AIR.h -c000000004F664B7D0000000000000314 -t1332104061 -s788 -i - -N/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac/Adobe AIR.framework/Headers/FlashRuntimeExtensions.h -c000000004F664B7D0000000000004D54 -t1332104061 -s19796 -i - -N/Developer/SDKs/MacOSX10.5.sdk -c000000004AB44D2500000000000000EE -t1253330213 -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/fcntl.h -c0000000047BA993000000000000003EA -t1203411248 -s1002 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/pthread.h -c0000000047BA9932000000000000380F -t1203411250 -s14351 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdio.h -c0000000047BA99310000000000003D1D -t1203411249 -s15645 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/stdlib.h -c0000000047BA99310000000000002A79 -t1203411249 -s10873 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/string.h -c0000000047BA99320000000000001731 -t1203411250 -s5937 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/ioctl.h -c0000000047E883CF00000000000011D1 -t1206420431 -s4561 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/stat.h -c0000000047E883D100000000000047CE -t1206420433 -s18382 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/sys/types.h -c0000000047E883D2000000000000290F -t1206420434 -s10511 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/termios.h -c0000000047BA993000000000000004D4 -t1203411248 -s1236 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/include/unistd.h -c0000000047BA993200000000000053FF -t1203411250 -s21503 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/gcc/i686-apple-darwin10/4.2.1/include/limits.h -c000000004A11EAF10000000000000C7E -t1242688241 -s3198 - -N/Developer/SDKs/MacOSX10.5.sdk/usr/lib/gcc/i686-apple-darwin10/4.2.1/include/stdint.h -c000000004A11EAF1000000000000190C -t1242688241 -s6412 - -N/Developer/SDKs/MacOSX10.6.sdk -c000000004ABBF0FD00000000000000EE -t1253830909 -s238 - -N/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h -c0000000040C4AA6800000000000001E5 -t1086630504 -s485 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/fcntl.h -c000000004A5C14A600000000000003EA -t1247548582 -s1002 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/pthread.h -c000000004A5C14A700000000000038F0 -t1247548583 -s14576 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdio.h -c000000004A5C14A70000000000004174 -t1247548583 -s16756 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdlib.h -c000000004A5C14A70000000000002DF5 -t1247548583 -s11765 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/string.h -c000000004A5C14A70000000000001731 -t1247548583 -s5937 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/sys/ioctl.h -c000000004A73D651000000000000116C -t1249105489 -s4460 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/sys/stat.h -c000000004A73D6550000000000004A1D -t1249105493 -s18973 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/sys/types.h -c000000004A73D6550000000000002905 -t1249105493 -s10501 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/termios.h -c000000004A5C14A600000000000004D4 -t1247548582 -s1236 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/include/unistd.h -c000000004A5C14A7000000000000563E -t1247548583 -s22078 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/lib/gcc/i686-apple-darwin10/4.2.1/include/limits.h -c000000004A11EB240000000000000C7E -t1242688292 -s3198 - -N/Developer/SDKs/MacOSX10.6.sdk/usr/lib/gcc/i686-apple-darwin10/4.2.1/include/stdint.h -c000000004A11EB24000000000000190C -t1242688292 -s6412 - -N/System/Library/Frameworks/Cocoa.framework/Cocoa -c000000004A1F2D63000000000000A5E0 -t1243557219 -s42464 - -N/Users/quetwo/Documents/SerialANE/English.lproj/InfoPlist.strings -c000000004ECFCD560000000000000030 -t1322241366 -s48 - -N/Users/quetwo/Documents/SerialANE/SerialANE.c -c000000004F6E909D00000000000023F1 -t1332646045 -s9201 -i"SerialANE.h" -i"stdio.h" -i"pthread.h" -i"stdlib.h" -i"stdint.h" -i"String.h" -i"rs232.h" -i"FlashRuntimeExtensions.h" -i - -N/Users/quetwo/Documents/SerialANE/SerialANE.h -c000000004F6E565A0000000000000434 -t1332631130 -s1076 -i - -N/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -c000000004ECFCD560000000000000096 -t1322241366 -s150 -i - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework -t1332646055 -s170 - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework.dSYM -t1332646055 -s102 - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Resources -t3 -s26 - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/SerialANE -t3 -s26 - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -t1332646055 -s92 - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist -t1332646055 -s720 - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE -t1332646055 -s18836 - -N/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/Current -t3 -s1 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE -t1322243566 -s19420 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList -c000000004F6E90A700000000000000F0 -t1332646055 -s240 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.o -t1332646055 -s15692 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/rs232.o -t1332646055 -s7092 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE -t2 -s0 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE.LinkFileList -c000000004ECFD55C00000000000000EE -t1322243420 -s238 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE.o -t1322243566 -s15700 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/rs232.o -t1322243566 -s7672 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE -t2 -s0 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE.LinkFileList -c000000004ECFD55C00000000000000F4 -t1322243420 -s244 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE.o -t1322243422 -s18504 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/rs232.o -t1322243422 -s9444 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/StaticAnalyzer/normal/i386/SerialANE.plist -t1322251564 -s275 - -N/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/StaticAnalyzer/normal/i386/rs232.plist -t1322251564 -s275 - -N/Users/quetwo/Documents/SerialANE/rs232.c -c000000004ED2CC1F0000000000002793 -t1322437663 -s10131 -i"rs232.h" - -N/Users/quetwo/Documents/SerialANE/rs232.h -c000000004ED24F97000000000000070C -t1322405783 -s1804 -i -i -i -i -i -i -i -i -i -i - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-acxozgsgcarlqfbagytukuxdigbu/SerialANE_Prefix.pch.pth -t1322248702 -s55304 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azybmrckhntbptdfrijbpnvkspys/SerialANE_Prefix.pch.gch -t1322372492 -s2191728 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bezqoamocjpgvgbsisfytfabghbs/SerialANE_Prefix.pch.gch -t1332644261 -s2191728 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bhrattglsybfrxfrsvfbukrciter/SerialANE_Prefix.pch.gch -t2 -s0 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dhouvpiemftqkdekcxslwwtyliyh/SerialANE_Prefix.pch.gch -t2 -s0 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dhtdonjkunotobdusliuhncxyuli/SerialANE_Prefix.pch.gch -t2 -s0 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dpvpozlpclhkprhcnnvafnwurwxr/SerialANE_Prefix.pch.gch -t1322243421 -s2208112 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dvymgnuyjkhxbdftuahrxcbioodb/SerialANE_Prefix.pch.gch -t1332644329 -s2191728 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dyugocxszpqrybdirpjfbtdlmwvr/SerialANE_Prefix.pch.gch -t1322243421 -s2191728 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-efwkvrqnotblfofunkpclmcbhvpf/SerialANE_Prefix.pch.gch -t1322374509 -s2191728 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-emtvsdkqpeqabhalxjndvkytvfbk/SerialANE_Prefix.pch.gch -t1322243565 -s1954160 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-erwcteucreqrjcanmvlakgtsjeou/SerialANE_Prefix.pch.gch -t1322243421 -s1954160 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fcwpdjuccxtagjgdjyexwzkpafrr/SerialANE_Prefix.pch.gch -t1332644208 -s2191728 - -N/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch.gch -t1332646055 -s2191728 - -NInfo.plist -c000000004ECFCD560000000000000357 -t1322241366 -s855 - -CAnalyze /Users/quetwo/Documents/SerialANE/SerialANE.c -s343944364.377051 -e343944364.477251 -r1 -xAnalyze -x/Users/quetwo/Documents/SerialANE/SerialANE.c -lSLF07#2@53"Analyze /Users/quetwo/Documents/SerialANE/SerialANE.c343944364#343944364#0(0"0(0#0#45"/Users/quetwo/Documents/SerialANE/SerialANE.c4300885448#1622" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-acxozgsgcarlqfbagytukuxdigbu/SerialANE_Prefix.pch --analyze /Users/quetwo/Documents/SerialANE/SerialANE.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/StaticAnalyzer/normal/i386/SerialANE.plist 0# - -CAnalyze /Users/quetwo/Documents/SerialANE/rs232.c -s343944364.378210 -e343944364.427058 -r1 -xAnalyze -x/Users/quetwo/Documents/SerialANE/rs232.c -lSLF07#2@49"Analyze /Users/quetwo/Documents/SerialANE/rs232.c343944364#343944364#0(0"0(0#0#41"/Users/quetwo/Documents/SerialANE/rs232.c4300885448#1614" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x c -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-acxozgsgcarlqfbagytukuxdigbu/SerialANE_Prefix.pch --analyze /Users/quetwo/Documents/SerialANE/rs232.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/StaticAnalyzer/normal/i386/rs232.plist 0# - -CCheck dependencies -r0 -lSLF07#2@18"Check dependencies354338855#354338855#0(0"0(0#1#0"4300885448#0"0# - -CCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.o /Users/quetwo/Documents/SerialANE/SerialANE.c normal i386 c com.apple.compilers.gcc.4_2 -s354338855.239885 -e354338855.328881 -r1 -xCompileC -xbuild/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.o -x/Users/quetwo/Documents/SerialANE/SerialANE.c -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@53"Compile /Users/quetwo/Documents/SerialANE/SerialANE.c354338855#354338855#0(0"0(0#0#45"/Users/quetwo/Documents/SerialANE/SerialANE.c4300885448#1607" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -fvisibility=hidden -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/SerialANE.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.o 0# - -CCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/rs232.o /Users/quetwo/Documents/SerialANE/rs232.c normal i386 c com.apple.compilers.gcc.4_2 -s354338855.240897 -e354338855.299018 -r1 -xCompileC -xbuild/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/rs232.o -x/Users/quetwo/Documents/SerialANE/rs232.c -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@49"Compile /Users/quetwo/Documents/SerialANE/rs232.c354338855#354338855#0(0"0(0#0#41"/Users/quetwo/Documents/SerialANE/rs232.c4300885448#1599" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -fvisibility=hidden -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/rs232.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/rs232.o 0# - -CCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE.o /Users/quetwo/Documents/SerialANE/SerialANE.c normal ppc c com.apple.compilers.gcc.4_2 -s343936366.010392 -e343936366.227269 -r1 -xCompileC -xbuild/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE.o -x/Users/quetwo/Documents/SerialANE/SerialANE.c -xnormal -xppc -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@53"Compile /Users/quetwo/Documents/SerialANE/SerialANE.c343936366#343936366#0(0"0(0#0#45"/Users/quetwo/Documents/SerialANE/SerialANE.c4300885448#1562" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch ppc -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G5 -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/ppc -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-emtvsdkqpeqabhalxjndvkytvfbk/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/SerialANE.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE.o 0# - -CCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/rs232.o /Users/quetwo/Documents/SerialANE/rs232.c normal ppc c com.apple.compilers.gcc.4_2 -s343936366.185367 -e343936366.270719 -r1 -xCompileC -xbuild/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/rs232.o -x/Users/quetwo/Documents/SerialANE/rs232.c -xnormal -xppc -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@49"Compile /Users/quetwo/Documents/SerialANE/rs232.c343936366#343936366#0(0"0(0#0#41"/Users/quetwo/Documents/SerialANE/rs232.c4300885448#1554" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch ppc -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G5 -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/ppc -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-emtvsdkqpeqabhalxjndvkytvfbk/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/rs232.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/rs232.o 0# - -CCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE.o /Users/quetwo/Documents/SerialANE/SerialANE.c normal x86_64 c com.apple.compilers.gcc.4_2 -s343936222.093918 -e343936222.500914 -r1 -xCompileC -xbuild/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE.o -x/Users/quetwo/Documents/SerialANE/SerialANE.c -xnormal -xx86_64 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@53"Compile /Users/quetwo/Documents/SerialANE/SerialANE.c343936222#343936222#0(0"0(0#0#45"/Users/quetwo/Documents/SerialANE/SerialANE.c4300885448#1574" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/x86_64 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dpvpozlpclhkprhcnnvafnwurwxr/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/SerialANE.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE.o 0# - -CCompileC build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/rs232.o /Users/quetwo/Documents/SerialANE/rs232.c normal x86_64 c com.apple.compilers.gcc.4_2 -s343936222.095386 -e343936222.433747 -r1 -xCompileC -xbuild/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/rs232.o -x/Users/quetwo/Documents/SerialANE/rs232.c -xnormal -xx86_64 -xc -xcom.apple.compilers.gcc.4_2 -o/Users/quetwo/Documents/SerialANE/rs232.c: In function 'PollComport': -o/Users/quetwo/Documents/SerialANE/rs232.c:141: warning: comparison is always false due to limited range of data type -lSLF07#2@49"Compile /Users/quetwo/Documents/SerialANE/rs232.c343936222#343936222#0(187"/Users/quetwo/Documents/SerialANE/rs232.c: In function 'PollComport': /Users/quetwo/Documents/SerialANE/rs232.c:141: warning: comparison is always false due to limited range of data type 1(22@60"Comparison is always false due to limited range of data type343936222#70#117#0(6@41"/Users/quetwo/Documents/SerialANE/rs232.c343936018#141#0#141#0#0"0(0#0#41"/Users/quetwo/Documents/SerialANE/rs232.c4300885448#1566" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/x86_64 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -include /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dpvpozlpclhkprhcnnvafnwurwxr/SerialANE_Prefix.pch -c /Users/quetwo/Documents/SerialANE/rs232.c -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/rs232.o 0# - -CCopyStringsFile /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings English.lproj/InfoPlist.strings -s354338855.046798 -e354338855.145398 -r1 -xCopyStringsFile -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -xEnglish.lproj/InfoPlist.strings -lSLF07#2@36"Copy English.lproj/InfoPlist.strings354338855#354338855#0(0"0(0#0#65"/Users/quetwo/Documents/SerialANE/English.lproj/InfoPlist.strings4300885448#367" cd /Users/quetwo/Documents/SerialANE 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/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/English.lproj 0# - -CCreateUniversalBinary /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE normal "i386 ppc" -r0 - -CCreateUniversalBinary /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE normal "x86_64 i386 ppc" -r0 - -CGenerateDSYMFile /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework.dSYM /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE -s354338855.394881 -e354338855.407139 -r1 -xGenerateDSYMFile -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework.dSYM -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE -lSLF07#2@110"GenerateDSYMFile build/Release/SerialANE.framework.dSYM build/Release/SerialANE.framework/Versions/A/SerialANE354338855#354338855#0(0"0(0#0#88"/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE4300885448#238" cd /Users/quetwo/Documents/SerialANE /Developer/usr/bin/dsymutil /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE -o /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework.dSYM 0# - -CLd /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE normal i386 -s354338855.328975 -e354338855.394774 -r1 -xLd -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE -xnormal -xi386 -lSLF07#2@93"Link /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE354338855#354338855#0(0"0(0#0#0"4300885448#1089" cd /Users/quetwo/Documents/SerialANE setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/gcc-4.2 -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/quetwo/Documents/SerialANE/build/Release "-L/Developer/SDKs/MacOSX10.5.sdk/Library/Frameworks/Adobe AIR.framework/Versions/1.0" -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac" -filelist /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList -install_name /Users/quetwo/Library/Frameworks/SerialANE.framework/Versions/A/SerialANE -Xlinker -rpath -Xlinker @executable_path/../runtimes/air/mac -Xlinker -rpath -Xlinker @executable_path/../Frameworks -Xlinker -rpath -Xlinker /Library/Frameworks -mmacosx-version-min=10.5 -flat_namespace -weak_framework "Adobe AIR" -framework Cocoa -framework "Adobe AIR" -single_module -compatibility_version 1 -current_version 1 -o /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/SerialANE 0# - -CLd /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE normal i386 -s343936366.050828 -e343936366.185259 -r1 -xLd -x/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE -xnormal -xi386 -lSLF07#2@124"Link /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE343936366#343936366#0(0"0(0#0#0"4300885448#826" cd /Users/quetwo/Documents/SerialANE setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/gcc-4.2 -arch i386 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/quetwo/Documents/SerialANE/build/Release -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -filelist /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE.LinkFileList -install_name /Users/quetwo/Library/Frameworks/SerialANE.framework/Versions/A/SerialANE -mmacosx-version-min=10.5 -framework Cocoa -framework "Adobe AIR" -single_module -compatibility_version 1 -current_version 1 -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/i386/SerialANE 0# - -CLd /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE normal ppc -s343936366.270825 -e343936366.381361 -r0 -xLd -x/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE -xnormal -xppc -old: warning: in /Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR, file is not of required architecture -oUndefined symbols: -o "_FRENewObjectFromUTF8", referenced from: -o _getBytesAsString in SerialANE.o -o _getBytesAsArray in SerialANE.o -o "_FREGetObjectAsUint32", referenced from: -o _sendByte in SerialANE.o -o "_FRESetArrayLength", referenced from: -o _getBytesAsArray in SerialANE.o -o "_FREDispatchStatusEventAsync", referenced from: -o _pollForData in SerialANE.o -o "_FREAcquireByteArray", referenced from: -o _sendByteArray in SerialANE.o -o _getBytesAsByteArray in SerialANE.o -o "_FRESetArrayElementAt", referenced from: -o _getBytesAsArray in SerialANE.o -o "_FREReleaseByteArray", referenced from: -o _sendByteArray in SerialANE.o -o _getBytesAsByteArray in SerialANE.o -o "_FRENewObjectFromUint32", referenced from: -o _getByte in SerialANE.o -o "_FRENewObjectFromBool", referenced from: -o _setupPort in SerialANE.o -o _isSupported in SerialANE.o -o _sendByteArray in SerialANE.o -o _sendString in SerialANE.o -o _sendByte in SerialANE.o -o _getBytesAsByteArray in SerialANE.o -o "_FRENewObjectFromInt32", referenced from: -o _getAvailableBytes in SerialANE.o -o "_FREGetObjectAsInt32", referenced from: -o _setupPort in SerialANE.o -o _setupPort in SerialANE.o -o "_FREGetObjectAsUTF8", referenced from: -o _sendString in SerialANE.o -o "_FRENewObject", referenced from: -o _getBytesAsArray in SerialANE.o -old: symbol(s) not found -ocollect2: ld returned 1 exit status -lSLF07#2@123"Link /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE343936366#343936366#0(1582"ld: warning: in /Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR, file is not of required architecture Undefined symbols: "_FRENewObjectFromUTF8", referenced from: _getBytesAsString in SerialANE.o _getBytesAsArray in SerialANE.o "_FREGetObjectAsUint32", referenced from: _sendByte in SerialANE.o "_FRESetArrayLength", referenced from: _getBytesAsArray in SerialANE.o "_FREDispatchStatusEventAsync", referenced from: _pollForData in SerialANE.o "_FREAcquireByteArray", referenced from: _sendByteArray in SerialANE.o _getBytesAsByteArray in SerialANE.o "_FRESetArrayElementAt", referenced from: _getBytesAsArray in SerialANE.o "_FREReleaseByteArray", referenced from: _sendByteArray in SerialANE.o _getBytesAsByteArray in SerialANE.o "_FRENewObjectFromUint32", referenced from: _getByte in SerialANE.o "_FRENewObjectFromBool", referenced from: _setupPort in SerialANE.o _isSupported in SerialANE.o _sendByteArray in SerialANE.o _sendString in SerialANE.o _sendByte in SerialANE.o _getBytesAsByteArray in SerialANE.o "_FRENewObjectFromInt32", referenced from: _getAvailableBytes in SerialANE.o "_FREGetObjectAsInt32", referenced from: _setupPort in SerialANE.o _setupPort in SerialANE.o "_FREGetObjectAsUTF8", referenced from: _sendString in SerialANE.o "_FRENewObject", referenced from: _getBytesAsArray in SerialANE.o ld: symbol(s) not found collect2: ld returned 1 exit status 38(22@136"In /Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR, file is not of required architecture343936366#0#150#0(6@0"343936366#0#0#0#0#0"0(4@41""_FRENewObjectFromUTF8", referenced from:343936366#169#44#0(6@0"343936366#0#0#0#0#0"0(13@32"_getBytesAsString in SerialANE.o343936366#213#39#0(6@0"343936366#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936366#252#38#0(6@0"343936366#0#0#0#0#0"0(4@41""_FREGetObjectAsUint32", referenced from:343936366#290#44#0(6@0"343936366#0#0#0#0#0"0(13@24"_sendByte in SerialANE.o343936366#334#31#0(6@0"343936366#0#0#0#0#0"0(4@38""_FRESetArrayLength", referenced from:343936366#365#41#0(6@0"343936366#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936366#406#38#0(6@0"343936366#0#0#0#0#0"0(4@48""_FREDispatchStatusEventAsync", referenced from:343936366#444#51#0(6@0"343936366#0#0#0#0#0"0(13@27"_pollForData in SerialANE.o343936366#495#34#0(6@0"343936366#0#0#0#0#0"0(4@40""_FREAcquireByteArray", referenced from:343936366#529#43#0(6@0"343936366#0#0#0#0#0"0(13@29"_sendByteArray in SerialANE.o343936366#572#36#0(6@0"343936366#0#0#0#0#0"0(13@35"_getBytesAsByteArray in SerialANE.o343936366#608#42#0(6@0"343936366#0#0#0#0#0"0(4@41""_FRESetArrayElementAt", referenced from:343936366#650#44#0(6@0"343936366#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936366#694#38#0(6@0"343936366#0#0#0#0#0"0(4@40""_FREReleaseByteArray", referenced from:343936366#732#43#0(6@0"343936366#0#0#0#0#0"0(13@29"_sendByteArray in SerialANE.o343936366#775#36#0(6@0"343936366#0#0#0#0#0"0(13@35"_getBytesAsByteArray in SerialANE.o343936366#811#42#0(6@0"343936366#0#0#0#0#0"0(4@43""_FRENewObjectFromUint32", referenced from:343936366#853#46#0(6@0"343936366#0#0#0#0#0"0(13@23"_getByte in SerialANE.o343936366#899#30#0(6@0"343936366#0#0#0#0#0"0(4@41""_FRENewObjectFromBool", referenced from:343936366#929#44#0(6@0"343936366#0#0#0#0#0"0(13@25"_setupPort in SerialANE.o343936366#973#32#0(6@0"343936366#0#0#0#0#0"0(13@27"_isSupported in SerialANE.o343936366#1005#34#0(6@0"343936366#0#0#0#0#0"0(13@29"_sendByteArray in SerialANE.o343936366#1039#36#0(6@0"343936366#0#0#0#0#0"0(13@26"_sendString in SerialANE.o343936366#1075#33#0(6@0"343936366#0#0#0#0#0"0(13@24"_sendByte in SerialANE.o343936366#1108#31#0(6@0"343936366#0#0#0#0#0"0(13@35"_getBytesAsByteArray in SerialANE.o343936366#1139#42#0(6@0"343936366#0#0#0#0#0"0(4@42""_FRENewObjectFromInt32", referenced from:343936366#1181#45#0(6@0"343936366#0#0#0#0#0"0(13@33"_getAvailableBytes in SerialANE.o343936366#1226#40#0(6@0"343936366#0#0#0#0#0"0(4@40""_FREGetObjectAsInt32", referenced from:343936366#1266#43#0(6@0"343936366#0#0#0#0#0"0(13@25"_setupPort in SerialANE.o343936366#1309#32#0(6@0"343936366#0#0#0#0#0"0(13@25"_setupPort in SerialANE.o343936366#1341#32#0(6@0"343936366#0#0#0#0#0"0(4@39""_FREGetObjectAsUTF8", referenced from:343936366#1373#42#0(6@0"343936366#0#0#0#0#0"0(13@26"_sendString in SerialANE.o343936366#1415#33#0(6@0"343936366#0#0#0#0#0"0(4@33""_FRENewObject", referenced from:343936366#1448#36#0(6@0"343936366#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936366#1484#38#0(6@0"343936366#0#0#0#0#0"0(13@19"Symbol(s) not found343936366#1522#24#0(6@0"343936366#0#0#0#0#0"0(13@35"Collect2: ld returned 1 exit status343936366#1546#36#0(6@0"343936366#0#0#0#0#0"0(0#0#0"4300885448#823" cd /Users/quetwo/Documents/SerialANE setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/gcc-4.2 -arch ppc -dynamiclib -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/quetwo/Documents/SerialANE/build/Release -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -filelist /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE.LinkFileList -install_name /Users/quetwo/Library/Frameworks/SerialANE.framework/Versions/A/SerialANE -mmacosx-version-min=10.5 -framework Cocoa -framework "Adobe AIR" -single_module -compatibility_version 1 -current_version 1 -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/ppc/SerialANE 1# - -CLd /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE normal x86_64 -s343936222.501054 -e343936222.603189 -r0 -xLd -x/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE -xnormal -xx86_64 -old: warning: in /Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR, file is not of required architecture -oUndefined symbols: -o "_FRENewObjectFromUTF8", referenced from: -o _getBytesAsString in SerialANE.o -o _getBytesAsArray in SerialANE.o -o "_FREGetObjectAsUint32", referenced from: -o _sendByte in SerialANE.o -o "_FRESetArrayLength", referenced from: -o _getBytesAsArray in SerialANE.o -o "_FREDispatchStatusEventAsync", referenced from: -o _pollForData in SerialANE.o -o "_FREAcquireByteArray", referenced from: -o _sendByteArray in SerialANE.o -o _getBytesAsByteArray in SerialANE.o -o "_FRESetArrayElementAt", referenced from: -o _getBytesAsArray in SerialANE.o -o "_FREReleaseByteArray", referenced from: -o _sendByteArray in SerialANE.o -o _getBytesAsByteArray in SerialANE.o -o "_FRENewObjectFromUint32", referenced from: -o _getByte in SerialANE.o -o "_FRENewObjectFromBool", referenced from: -o _setupPort in SerialANE.o -o _isSupported in SerialANE.o -o _sendByteArray in SerialANE.o -o _sendString in SerialANE.o -o _sendByte in SerialANE.o -o _getBytesAsByteArray in SerialANE.o -o "_FRENewObjectFromInt32", referenced from: -o _getAvailableBytes in SerialANE.o -o "_FREGetObjectAsInt32", referenced from: -o _setupPort in SerialANE.o -o _setupPort in SerialANE.o -o "_FREGetObjectAsUTF8", referenced from: -o _sendString in SerialANE.o -o "_FRENewObject", referenced from: -o _getBytesAsArray in SerialANE.o -old: symbol(s) not found -ocollect2: ld returned 1 exit status -lSLF07#2@126"Link /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE343936222#343936222#0(1582"ld: warning: in /Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR, file is not of required architecture Undefined symbols: "_FRENewObjectFromUTF8", referenced from: _getBytesAsString in SerialANE.o _getBytesAsArray in SerialANE.o "_FREGetObjectAsUint32", referenced from: _sendByte in SerialANE.o "_FRESetArrayLength", referenced from: _getBytesAsArray in SerialANE.o "_FREDispatchStatusEventAsync", referenced from: _pollForData in SerialANE.o "_FREAcquireByteArray", referenced from: _sendByteArray in SerialANE.o _getBytesAsByteArray in SerialANE.o "_FRESetArrayElementAt", referenced from: _getBytesAsArray in SerialANE.o "_FREReleaseByteArray", referenced from: _sendByteArray in SerialANE.o _getBytesAsByteArray in SerialANE.o "_FRENewObjectFromUint32", referenced from: _getByte in SerialANE.o "_FRENewObjectFromBool", referenced from: _setupPort in SerialANE.o _isSupported in SerialANE.o _sendByteArray in SerialANE.o _sendString in SerialANE.o _sendByte in SerialANE.o _getBytesAsByteArray in SerialANE.o "_FRENewObjectFromInt32", referenced from: _getAvailableBytes in SerialANE.o "_FREGetObjectAsInt32", referenced from: _setupPort in SerialANE.o _setupPort in SerialANE.o "_FREGetObjectAsUTF8", referenced from: _sendString in SerialANE.o "_FRENewObject", referenced from: _getBytesAsArray in SerialANE.o ld: symbol(s) not found collect2: ld returned 1 exit status 38(22@136"In /Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac/Adobe AIR.framework/Adobe AIR, file is not of required architecture343936222#0#150#0(6@0"343936222#0#0#0#0#0"0(4@41""_FRENewObjectFromUTF8", referenced from:343936222#169#44#0(6@0"343936222#0#0#0#0#0"0(13@32"_getBytesAsString in SerialANE.o343936222#213#39#0(6@0"343936222#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936222#252#38#0(6@0"343936222#0#0#0#0#0"0(4@41""_FREGetObjectAsUint32", referenced from:343936222#290#44#0(6@0"343936222#0#0#0#0#0"0(13@24"_sendByte in SerialANE.o343936222#334#31#0(6@0"343936222#0#0#0#0#0"0(4@38""_FRESetArrayLength", referenced from:343936222#365#41#0(6@0"343936222#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936222#406#38#0(6@0"343936222#0#0#0#0#0"0(4@48""_FREDispatchStatusEventAsync", referenced from:343936222#444#51#0(6@0"343936222#0#0#0#0#0"0(13@27"_pollForData in SerialANE.o343936222#495#34#0(6@0"343936222#0#0#0#0#0"0(4@40""_FREAcquireByteArray", referenced from:343936222#529#43#0(6@0"343936222#0#0#0#0#0"0(13@29"_sendByteArray in SerialANE.o343936222#572#36#0(6@0"343936222#0#0#0#0#0"0(13@35"_getBytesAsByteArray in SerialANE.o343936222#608#42#0(6@0"343936222#0#0#0#0#0"0(4@41""_FRESetArrayElementAt", referenced from:343936222#650#44#0(6@0"343936222#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936222#694#38#0(6@0"343936222#0#0#0#0#0"0(4@40""_FREReleaseByteArray", referenced from:343936222#732#43#0(6@0"343936222#0#0#0#0#0"0(13@29"_sendByteArray in SerialANE.o343936222#775#36#0(6@0"343936222#0#0#0#0#0"0(13@35"_getBytesAsByteArray in SerialANE.o343936222#811#42#0(6@0"343936222#0#0#0#0#0"0(4@43""_FRENewObjectFromUint32", referenced from:343936222#853#46#0(6@0"343936222#0#0#0#0#0"0(13@23"_getByte in SerialANE.o343936222#899#30#0(6@0"343936222#0#0#0#0#0"0(4@41""_FRENewObjectFromBool", referenced from:343936222#929#44#0(6@0"343936222#0#0#0#0#0"0(13@25"_setupPort in SerialANE.o343936222#973#32#0(6@0"343936222#0#0#0#0#0"0(13@27"_isSupported in SerialANE.o343936222#1005#34#0(6@0"343936222#0#0#0#0#0"0(13@29"_sendByteArray in SerialANE.o343936222#1039#36#0(6@0"343936222#0#0#0#0#0"0(13@26"_sendString in SerialANE.o343936222#1075#33#0(6@0"343936222#0#0#0#0#0"0(13@24"_sendByte in SerialANE.o343936222#1108#31#0(6@0"343936222#0#0#0#0#0"0(13@35"_getBytesAsByteArray in SerialANE.o343936222#1139#42#0(6@0"343936222#0#0#0#0#0"0(4@42""_FRENewObjectFromInt32", referenced from:343936222#1181#45#0(6@0"343936222#0#0#0#0#0"0(13@33"_getAvailableBytes in SerialANE.o343936222#1226#40#0(6@0"343936222#0#0#0#0#0"0(4@40""_FREGetObjectAsInt32", referenced from:343936222#1266#43#0(6@0"343936222#0#0#0#0#0"0(13@25"_setupPort in SerialANE.o343936222#1309#32#0(6@0"343936222#0#0#0#0#0"0(13@25"_setupPort in SerialANE.o343936222#1341#32#0(6@0"343936222#0#0#0#0#0"0(4@39""_FREGetObjectAsUTF8", referenced from:343936222#1373#42#0(6@0"343936222#0#0#0#0#0"0(13@26"_sendString in SerialANE.o343936222#1415#33#0(6@0"343936222#0#0#0#0#0"0(4@33""_FRENewObject", referenced from:343936222#1448#36#0(6@0"343936222#0#0#0#0#0"0(13@31"_getBytesAsArray in SerialANE.o343936222#1484#38#0(6@0"343936222#0#0#0#0#0"0(13@19"Symbol(s) not found343936222#1522#24#0(6@0"343936222#0#0#0#0#0"0(13@35"Collect2: ld returned 1 exit status343936222#1546#36#0(6@0"343936222#0#0#0#0#0"0(0#0#0"4300885448#832" cd /Users/quetwo/Documents/SerialANE setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/gcc-4.2 -arch x86_64 -dynamiclib -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/quetwo/Documents/SerialANE/build/Release -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -filelist /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE.LinkFileList -install_name /Users/quetwo/Library/Frameworks/SerialANE.framework/Versions/A/SerialANE -mmacosx-version-min=10.6 -framework Cocoa -framework "Adobe AIR" -single_module -compatibility_version 1 -current_version 1 -o /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/Objects-normal/x86_64/SerialANE 1# - -CProcessInfoPlistFile /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist Info.plist -s354338855.042923 -e354338855.046716 -r1 -xProcessInfoPlistFile -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist -xInfo.plist -lSLF07#2@18"Process Info.plist354338855#354338855#0(0"0(0#0#44"/Users/quetwo/Documents/SerialANE/Info.plist4300885448#222" cd /Users/quetwo/Documents/SerialANE builtin-infoPlistUtility Info.plist -expandbuildsettings -platform macosx -o /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/A/Resources/Info.plist 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-acxozgsgcarlqfbagytukuxdigbu/SerialANE_Prefix.pch.pth SerialANE_Prefix.pch normal i386 c com.apple.compilers.llvm.clang.1_0.analyzer -s343941502.143445 -e343941502.217327 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-acxozgsgcarlqfbagytukuxdigbu/SerialANE_Prefix.pch.pth -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.llvm.clang.1_0.analyzer -lSLF07#2@31"Precompile SerialANE_Prefix.pch343941502#343941502#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1493" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/clang -x c-header -arch i386 -fmessage-length=0 -pipe -fdiagnostics-print-source-range-info -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -fasm-blocks -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-acxozgsgcarlqfbagytukuxdigbu/SerialANE_Prefix.pch.pth 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azybmrckhntbptdfrijbpnvkspys/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s344065292.030153 -e344065292.228416 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azybmrckhntbptdfrijbpnvkspys/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch344065292#344065292#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1457" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-azybmrckhntbptdfrijbpnvkspys/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bezqoamocjpgvgbsisfytfabghbs/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s354337061.284517 -e354337061.657505 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bezqoamocjpgvgbsisfytfabghbs/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch354337061#354337061#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1478" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release -F/Developer/SDKs/MacOSX10.5.sdk/Library/Frameworks -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -fvisibility=hidden -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bezqoamocjpgvgbsisfytfabghbs/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-bhrattglsybfrxfrsvfbukrciter/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -r0 - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dhouvpiemftqkdekcxslwwtyliyh/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -r0 - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dhtdonjkunotobdusliuhncxyuli/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -r0 - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dpvpozlpclhkprhcnnvafnwurwxr/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal x86_64 c com.apple.compilers.gcc.4_2 -s343936221.200926 -e343936221.430145 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dpvpozlpclhkprhcnnvafnwurwxr/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xx86_64 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch343936221#343936221#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1461" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch x86_64 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/x86_64 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dpvpozlpclhkprhcnnvafnwurwxr/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dvymgnuyjkhxbdftuahrxcbioodb/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s354337129.510523 -e354337129.588375 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dvymgnuyjkhxbdftuahrxcbioodb/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch354337129#354337129#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1448" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release -F/Library/Frameworks -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -fvisibility=hidden -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dvymgnuyjkhxbdftuahrxcbioodb/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dyugocxszpqrybdirpjfbtdlmwvr/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s343936221.201833 -e343936221.357376 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dyugocxszpqrybdirpjfbtdlmwvr/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch343936221#343936221#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1457" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-dyugocxszpqrybdirpjfbtdlmwvr/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-efwkvrqnotblfofunkpclmcbhvpf/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s344067309.033484 -e344067309.098789 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-efwkvrqnotblfofunkpclmcbhvpf/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch344067309#344067309#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1477" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -fvisibility=hidden -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-efwkvrqnotblfofunkpclmcbhvpf/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-emtvsdkqpeqabhalxjndvkytvfbk/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal ppc c com.apple.compilers.gcc.4_2 -s343936365.774815 -e343936365.881519 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-emtvsdkqpeqabhalxjndvkytvfbk/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xppc -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch343936365#343936365#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1452" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch ppc -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mtune=G5 -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/ppc -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-emtvsdkqpeqabhalxjndvkytvfbk/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-erwcteucreqrjcanmvlakgtsjeou/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal ppc c com.apple.compilers.gcc.4_2 -s343936221.357498 -e343936222.093814 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-erwcteucreqrjcanmvlakgtsjeou/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xppc -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch343936221#343936222#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1452" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch ppc -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -mtune=G5 -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.5/sdks/4.5.1/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/ppc -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-erwcteucreqrjcanmvlakgtsjeou/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fcwpdjuccxtagjgdjyexwzkpafrr/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s354337008.134866 -e354337008.325929 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fcwpdjuccxtagjgdjyexwzkpafrr/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch354337008#354337008#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1426" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -fvisibility=hidden -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fcwpdjuccxtagjgdjyexwzkpafrr/SerialANE_Prefix.pch.gch 0# - -CProcessPCH /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch.gch SerialANE_Prefix.pch normal i386 c com.apple.compilers.gcc.4_2 -s354338855.145521 -e354338855.239786 -r1 -xProcessPCH -x/var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch.gch -xSerialANE_Prefix.pch -xnormal -xi386 -xc -xcom.apple.compilers.gcc.4_2 -lSLF07#2@31"Precompile SerialANE_Prefix.pch354338855#354338855#0(0"0(0#0#54"/Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch4300885448#1496" cd /Users/quetwo/Documents/SerialANE setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c-header -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-generated-files.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-own-target-headers.hmap -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-all-target-headers.hmap -iquote /Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/SerialANE-project-headers.hmap -F/Users/quetwo/Documents/SerialANE/build/Release "-F/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/runtimes/air/mac" -I/Users/quetwo/Documents/SerialANE/build/Release/include -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources/i386 -I/Users/quetwo/Documents/SerialANE/build/SerialANE.build/Release/SerialANE.framework.build/DerivedSources -fvisibility=hidden -c /Users/quetwo/Documents/SerialANE/SerialANE_Prefix.pch -o /var/folders/hs/hsVxKgWcHnueaHLKB4Hsz++++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/SerialANE_Prefix-fvkesaijbplkszeeiebzxljiwsrr/SerialANE_Prefix.pch.gch 0# - -CSymLink /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Resources Versions/Current/Resources -s354338855.034368 -e354338855.042851 -r1 -xSymLink -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Resources -xVersions/Current/Resources -lSLF07#2@85"Process /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Resources354338855#354338855#0(0"0(0#0#0"4300885448#162" cd /Users/quetwo/Documents/SerialANE /bin/ln -sf Versions/Current/Resources /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Resources 0# - -CSymLink /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/SerialANE Versions/Current/SerialANE -s354338855.038523 -e354338855.042714 -r1 -xSymLink -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/SerialANE -xVersions/Current/SerialANE -lSLF07#2@85"Process /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/SerialANE354338855#354338855#0(0"0(0#0#0"4300885448#162" cd /Users/quetwo/Documents/SerialANE /bin/ln -sf Versions/Current/SerialANE /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/SerialANE 0# - -CSymLink /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/Current A -s354338855.033138 -e354338855.038432 -r1 -xSymLink -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/Current -xA -lSLF07#2@92"Process /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/Current354338855#354338855#0(0"0(0#0#0"4300885448#144" cd /Users/quetwo/Documents/SerialANE /bin/ln -sf A /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework/Versions/Current 0# - -CTouch /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework -s354338855.407224 -e354338855.410072 -r1 -xTouch -x/Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework -lSLF07#2@73"Touch /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework354338855#354338855#0(0"0(0#0#0"4300885448#131" cd /Users/quetwo/Documents/SerialANE /usr/bin/touch -c /Users/quetwo/Documents/SerialANE/build/Release/SerialANE.framework 0# - diff --git a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/categories.pbxbtree b/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/categories.pbxbtree deleted file mode 100644 index d3f6bb3..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/categories.pbxbtree and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/cdecls.pbxbtree b/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/cdecls.pbxbtree deleted file mode 100644 index 2dca3ec..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/cdecls.pbxbtree and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/decls.pbxbtree b/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/decls.pbxbtree deleted file mode 100644 index b9f666f..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/decls.pbxbtree and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/files.pbxbtree b/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/files.pbxbtree deleted file mode 100644 index 6f13595..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/files.pbxbtree and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/imports.pbxbtree b/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/imports.pbxbtree deleted file mode 100644 index 6ebe31f..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/imports.pbxbtree and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/pbxindex.header b/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/pbxindex.header deleted file mode 100644 index 7f4c719..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/pbxindex.header and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/protocols.pbxbtree b/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/protocols.pbxbtree deleted file mode 100644 index d3f6bb3..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/protocols.pbxbtree and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/refs.pbxbtree b/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/refs.pbxbtree deleted file mode 100644 index f3bf902..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/refs.pbxbtree and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/strings.pbxstrings/control b/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/strings.pbxstrings/control deleted file mode 100644 index 1750b3a..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/strings.pbxstrings/control and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/strings.pbxstrings/strings b/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/strings.pbxstrings/strings deleted file mode 100644 index 9746a5c..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/strings.pbxstrings/strings and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/subclasses.pbxbtree b/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/subclasses.pbxbtree deleted file mode 100644 index 124d157..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/subclasses.pbxbtree and /dev/null differ diff --git a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/symbols0.pbxsymbols b/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/symbols0.pbxsymbols deleted file mode 100644 index e7685a0..0000000 Binary files a/native-extension/MacOS-x86/build/SerialANE.build/SerialANE.pbxindex/symbols0.pbxsymbols and /dev/null differ diff --git a/native-extension/MacOS-x86/rs232.c b/native-extension/MacOS-x86/rs232.c deleted file mode 100755 index 18c06b0..0000000 --- a/native-extension/MacOS-x86/rs232.c +++ /dev/null @@ -1,382 +0,0 @@ -/* -*************************************************************************** -* -* Author: Teunis van Beelen -* -* Copyright (C) 2005, 2006, 2007, 2008, 2009 Teunis van Beelen -* -* teuniz@gmail.com -* -*************************************************************************** -* -* This program is free software; you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation version 2 of the License. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License along -* with this program; if not, write to the Free Software Foundation, Inc., -* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -* -*************************************************************************** -* -* This version of GPL is at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt -* -*************************************************************************** - -Updated 2011-11-25 by Nicholas Kwiatkowski to allow compatibility with MacOSX 10.4+ -Updated 2013-01-04 by Ellis Elkins on behalf of DirectAthletics to add the ability - to enable DTR Control when port opened from outside this class. - -*/ - -#include "rs232.h" - -//------------------------------------------------------------------------ -// WINDOWS SECTION -//------------------------------------------------------------------------ - -#ifdef _WIN32 - -HANDLE Cport[16]; - -char comports[16][10]={"\\\\.\\COM1", "\\\\.\\COM2", "\\\\.\\COM3", "\\\\.\\COM4", - "\\\\.\\COM5", "\\\\.\\COM6", "\\\\.\\COM7", "\\\\.\\COM8", - "\\\\.\\COM9", "\\\\.\\COM10", "\\\\.\\COM11", "\\\\.\\COM12", - "\\\\.\\COM13", "\\\\.\\COM14", "\\\\.\\COM15", "\\\\.\\COM16"}; - -char baudr[64]; - - -int OpenComport(int comport_number, int baudrate, int useDtrControl) -{ - if((comport_number>15)||(comport_number<0)) - { - printf("illegal comport number\n"); - return(1); - } - - switch(baudrate) - { - case 110 : strcpy(baudr, "baud=110 data=8 parity=N stop=1"); - break; - case 300 : strcpy(baudr, "baud=300 data=8 parity=N stop=1"); - break; - case 600 : strcpy(baudr, "baud=600 data=8 parity=N stop=1"); - break; - case 1200 : strcpy(baudr, "baud=1200 data=8 parity=N stop=1"); - break; - case 2400 : strcpy(baudr, "baud=2400 data=8 parity=N stop=1"); - break; - case 4800 : strcpy(baudr, "baud=4800 data=8 parity=N stop=1"); - break; - case 9600 : strcpy(baudr, "baud=9600 data=8 parity=N stop=1"); - break; - case 19200 : strcpy(baudr, "baud=19200 data=8 parity=N stop=1"); - break; - case 38400 : strcpy(baudr, "baud=38400 data=8 parity=N stop=1"); - break; - case 57600 : strcpy(baudr, "baud=57600 data=8 parity=N stop=1"); - break; - case 115200 : strcpy(baudr, "baud=115200 data=8 parity=N stop=1"); - break; - case 128000 : strcpy(baudr, "baud=128000 data=8 parity=N stop=1"); - break; - case 256000 : strcpy(baudr, "baud=256000 data=8 parity=N stop=1"); - break; - default : printf("invalid baudrate\n"); - return(1); - break; - } - - Cport[comport_number] = CreateFileA(comports[comport_number], - GENERIC_READ|GENERIC_WRITE, - 0, /* no share */ - NULL, /* no security */ - OPEN_EXISTING, - 0, /* no threads */ - NULL); /* no templates */ - - if(Cport[comport_number]==INVALID_HANDLE_VALUE) - { - printf("unable to open comport\n"); - return(1); - } - - DCB port_settings; - memset(&port_settings, 0, sizeof(port_settings)); /* clear the new struct */ - port_settings.DCBlength = sizeof(port_settings); - - //use DTR control if specified. Disabled by default. - port_settings.fDtrControl = useDtrControl ? DTR_CONTROL_ENABLE : DTR_CONTROL_DISABLE; - - if(!BuildCommDCBA(baudr, &port_settings)) - { - printf("unable to set comport dcb settings\n"); - CloseHandle(Cport[comport_number]); - return(1); - } - - if(!SetCommState(Cport[comport_number], &port_settings)) - { - printf("unable to set comport cfg settings\n"); - CloseHandle(Cport[comport_number]); - return(1); - } - - COMMTIMEOUTS Cptimeouts; - - Cptimeouts.ReadIntervalTimeout = MAXDWORD; - Cptimeouts.ReadTotalTimeoutMultiplier = 0; - Cptimeouts.ReadTotalTimeoutConstant = 0; - Cptimeouts.WriteTotalTimeoutMultiplier = 0; - Cptimeouts.WriteTotalTimeoutConstant = 0; - - if(!SetCommTimeouts(Cport[comport_number], &Cptimeouts)) - { - printf("unable to set comport time-out settings\n"); - CloseHandle(Cport[comport_number]); - return(1); - } - - return(0); -} - - -int PollComport(int comport_number, unsigned char *buf, int size) -{ - int n; - - if(size>4096) size = 4096; - -/* added the void pointer cast, otherwise gcc will complain about */ -/* "warning: dereferencing type-punned pointer will break strict aliasing rules" */ - - ReadFile(Cport[comport_number], buf, size, (LPDWORD)((void *)&n), NULL); - - return(n); -} - - -int SendByte(int comport_number, unsigned char byte) -{ - int n; - - WriteFile(Cport[comport_number], &byte, 1, (LPDWORD)((void *)&n), NULL); - - if(n<0) return(1); - - return(0); -} - - -int SendBuf(int comport_number, unsigned char *buf, int size) -{ - int n; - - if(WriteFile(Cport[comport_number], buf, size, (LPDWORD)((void *)&n), NULL)) - { - return(n); - } - - return(-1); -} - - -void CloseComport(int comport_number) -{ - CloseHandle(Cport[comport_number]); -} - - -int IsCTSEnabled(int comport_number) -{ - int status; - - GetCommModemStatus(Cport[comport_number], (LPDWORD)((void *)&status)); - - if(status&MS_CTS_ON) return(1); - else return(0); -} - -// ----------------------------------------------------------------- -// MAC OS and LINUX SECTION -// ----------------------------------------------------------------- - - -#else - -int Cport[22], - error; - -struct termios new_port_settings, - old_port_settings[22]; - -int OpenComport(unsigned char *comPort, int baudrate, int comport_number, int useDtrControl) -{ - int baudr; - - switch(baudrate) - { - case 50 : baudr = B50; - break; - case 75 : baudr = B75; - break; - case 110 : baudr = B110; - break; - case 134 : baudr = B134; - break; - case 150 : baudr = B150; - break; - case 200 : baudr = B200; - break; - case 300 : baudr = B300; - break; - case 600 : baudr = B600; - break; - case 1200 : baudr = B1200; - break; - case 1800 : baudr = B1800; - break; - case 2400 : baudr = B2400; - break; - case 4800 : baudr = B4800; - break; - case 9600 : baudr = B9600; - break; - case 19200 : baudr = B19200; - break; - case 38400 : baudr = B38400; - break; - case 57600 : baudr = B57600; - break; - case 115200 : baudr = B115200; - break; - case 230400 : baudr = B230400; - break; - default : printf("invalid baudrate\n"); - return(1); - break; - } - - Cport[comport_number] = open((char *) comPort, O_RDWR | O_NOCTTY | O_NDELAY); - if(Cport[comport_number]==-1) - { - perror("unable to open comport "); - return(1); - } - - //use DTR control if specified. Disabled by default. - int bits ; - ioctl( Cport[comport_number], TIOCMGET, &bits ) ; - if ( useDtrControl ) bits |= TIOCM_DTR ; else bits &= ~( TIOCM_DTR ) ; - ioctl( Cport[comport_number], TIOCMSET, &bits ) ; - - error = tcgetattr(Cport[comport_number], old_port_settings + comport_number); - if(error==-1) - { - close(Cport[comport_number]); - perror("unable to read portsettings "); - return(1); - } - - tcgetattr(Cport[comport_number], &new_port_settings); - cfsetispeed(&new_port_settings, baudr); - cfsetospeed(&new_port_settings, baudr); - new_port_settings.c_cflag |= (CS8 | CLOCAL | CREAD); - new_port_settings.c_iflag |= IGNPAR; - new_port_settings.c_cc[VMIN] = 0; /* block untill n bytes are received */ - new_port_settings.c_cc[VTIME] = 0; /* block untill a timer expires (n * 100 mSec.) */ - - error = tcsetattr(Cport[comport_number], TCSANOW, &new_port_settings); - if(error==-1) - { - close(Cport[comport_number]); - perror("unable to adjust portsettings "); - return(1); - } - - return(0); -} - - -int PollComport(int comport_number, unsigned char *buf, int size) -{ - int n; - -#ifndef __STRICT_ANSI__ /* __STRICT_ANSI__ is defined when the -ansi option is used for gcc */ - if(size>SSIZE_MAX) size = (int)SSIZE_MAX; /* SSIZE_MAX is defined in limits.h */ -#else - if(size>4096) size = 4096; -#endif - - n = read(Cport[comport_number], buf, size); - - return(n); -} - - -int SendByte(int comport_number, unsigned char byte) -{ - int n; - - n = write(Cport[comport_number], &byte, 1); - if(n<0) return(1); - - return(0); -} - - -int SendBuf(int comport_number, unsigned char *buf, int size) -{ - return(write(Cport[comport_number], buf, size)); -} - - -void CloseComport(int comport_number) -{ - close(Cport[comport_number]); - tcsetattr(Cport[comport_number], TCSANOW, old_port_settings + comport_number); -} - -/* -Constant Description -TIOCM_LE DSR (data set ready/line enable) -TIOCM_DTR DTR (data terminal ready) -TIOCM_RTS RTS (request to send) -TIOCM_ST Secondary TXD (transmit) -TIOCM_SR Secondary RXD (receive) -TIOCM_CTS CTS (clear to send) -TIOCM_CAR DCD (data carrier detect) -TIOCM_CD Synonym for TIOCM_CAR -TIOCM_RNG RNG (ring) -TIOCM_RI Synonym for TIOCM_RNG -TIOCM_DSR DSR (data set ready) -*/ - -int IsCTSEnabled(int comport_number) -{ - int status; - - status = ioctl(Cport[comport_number], TIOCMGET, &status); - - if(status&TIOCM_CTS) return(1); - else return(0); -} - -#endif - -// ---------------------------------------------------------------- -// GENERIC SECTION -// ---------------------------------------------------------------- - -void cprintf(int comport_number, const char *text) /* sends a string to serial port */ -{ - while(*text != 0) SendByte(comport_number, *(text++)); -} - - diff --git a/native-extension/MacOS-x86/rs232.h b/native-extension/MacOS-x86/rs232.h deleted file mode 100755 index 698b732..0000000 --- a/native-extension/MacOS-x86/rs232.h +++ /dev/null @@ -1,77 +0,0 @@ -/* -*************************************************************************** -* -* Author: Teunis van Beelen -* -* Copyright (C) 2005, 2006, 2007, 2008, 2009 Teunis van Beelen -* -* teuniz@gmail.com -* -*************************************************************************** -* -* This program is free software; you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation version 2 of the License. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License along -* with this program; if not, write to the Free Software Foundation, Inc., -* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -* -*************************************************************************** -* -* This version of GPL is at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt -* -*************************************************************************** -*/ - - - -#ifndef rs232_INCLUDED -#define rs232_INCLUDED - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include - - - -#ifdef _WIN32 - -#include - -#else - -#include -#include -#include -#include -#include -#include -#include - -#endif - -int OpenComport(unsigned char *, int, int, int); -int PollComport(int, unsigned char *, int); -int SendByte(int, unsigned char); -int SendBuf(int, unsigned char *, int); -void CloseComport(int); -void cprintf(int, const char *); -int IsCTSEnabled(int); - - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif - - diff --git a/native-extension/MacOS-x86/version.plist b/native-extension/MacOS-x86/version.plist deleted file mode 100644 index c9c8853..0000000 --- a/native-extension/MacOS-x86/version.plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - BuildVersion - 2 - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - ProjectName - DevToolsWizardTemplates - SourceVersion - 15920000 - - diff --git a/native-extension/Windows-x86/SerialANE.c b/native-extension/Windows-x86/SerialANE.c deleted file mode 100644 index 3db01b2..0000000 --- a/native-extension/Windows-x86/SerialANE.c +++ /dev/null @@ -1,368 +0,0 @@ -/* - * Version: MPL 1.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is SerialANE.c - * - * The Initial Developer of the Original Code is Nicholas Kwiatkowski. - * Portions created by the Initial Developer are Copyright (C) 2011 - * the Initial Developer. All Rights Reserved. - * - * The Assistant Developer is Ellis Elkins on behalf of DirectAthletics. - * Portions created by the Assistant Developer are Copyright (C) 2013 - * DirectAthletics. All Rights Reserved. - * - */ - -#include "SerialANE.h" - -#include "stdio.h" -#include "pthread.h" -#include "stdlib.h" -#include "stdint.h" -#include "String.h" -#include "rs232.h" - -#include "FlashRuntimeExtensions.h" - -#ifdef _WIN32 - uint32_t isSupportedInOS = 1; -#else - uint32_t isSupportedInOS = 0; -#endif - - FREContext dllContext; - pthread_t ptrToThread; - unsigned char buffer[4096]; - int bufferSize; - int32_t comPort; - int baud; - int sentEvent; - - pthread_mutex_t safety = PTHREAD_MUTEX_INITIALIZER; - -void multiplatformSleep(int time) -{ -#ifdef _WIN32 - Sleep(time); // windows delay timer -#else - usleep(time); // POSIX/Unix/Mac delay timer -#endif -} - - -void *pollForData() -{ - - unsigned char incomingBuffer[4096]; - int incomingBufferSize = 0; - uint8_t prevCollection = 0; - - while(1) - { - multiplatformSleep(10); // used only for testing. I want manageable loops, not crazy ones. - incomingBufferSize = PollComport(comPort,incomingBuffer,4095); - if (incomingBufferSize > 0) - { - pthread_mutex_lock( &safety ); - memcpy(buffer+bufferSize,incomingBuffer,incomingBufferSize); - bufferSize = bufferSize + incomingBufferSize; - buffer[bufferSize] = 0; - pthread_mutex_unlock( &safety); - prevCollection = 1; - } - else - { - prevCollection = 0; - } - - if ((sentEvent == 0) && (((prevCollection == 0) && (bufferSize > 0)) || (bufferSize > 1024))) - { - sentEvent = 1; - FREDispatchStatusEventAsync(dllContext, (uint8_t*) "bufferHasData", (const uint8_t*) "INFO"); - } - } - return NULL; -} - - -FREObject isSupported(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - - FREObject result; - FRENewObjectFromBool( isSupportedInOS, &result); - return result; -} - -FREObject getBytesAsArray(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - - FRENewObject((const uint8_t*) "Array", 0, NULL, &result, NULL); - FRESetArrayLength(result,bufferSize-1); - - FREObject myChar; - int i; - - pthread_mutex_lock( &safety); - for(i=0; i < bufferSize; i++) - { - FRENewObjectFromUTF8(1,(unsigned char *) buffer+i, &myChar); - FRESetArrayElementAt(result, i, myChar); - } - - bufferSize=0; - sentEvent = 0; - pthread_mutex_unlock( &safety); - - return result; -} - -FREObject getBytesAsString(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - - pthread_mutex_lock( &safety); - FRENewObjectFromUTF8(bufferSize,(unsigned char *) buffer, &result); - bufferSize=0; - sentEvent = 0; - pthread_mutex_unlock( &safety); - - return result; -} - -FREObject getBytesAsByteArray(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - FREByteArray incomingBytes; - - FREAcquireByteArray(argv[0], &incomingBytes); - - pthread_mutex_lock( &safety); - memcpy(incomingBytes.bytes,buffer,bufferSize); - FRENewObjectFromInt32(bufferSize, &result); - bufferSize=0; - sentEvent = 0; - pthread_mutex_unlock( &safety); - - FREReleaseByteArray( &incomingBytes); - - return result; -} - -FREObject getByte(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - - pthread_mutex_lock( &safety); - FRENewObjectFromUint32(buffer[0], &result); - memcpy(buffer,buffer+1,bufferSize-1); - bufferSize--; - if (bufferSize == 0) - { - sentEvent = 0; - } - pthread_mutex_unlock( &safety); - - return result; -} - -FREObject getAvailableBytes(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - pthread_mutex_lock( &safety); - FRENewObjectFromInt32(bufferSize, &result); - pthread_mutex_unlock( &safety); - return result; -} - -FREObject sendByte(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - - uint32_t dataToSend; - int sendResult = 0; - - FREGetObjectAsUint32(argv[0], &dataToSend); - - sendResult = SendByte(comPort, (unsigned char) dataToSend); - - if (sendResult == -1) - { - FRENewObjectFromBool(0, &result); - } - else - { - FRENewObjectFromBool(1, &result); - } - return result; -} - -FREObject sendString(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - - uint32_t lengthToSend; - const uint8_t *dataToSend; - int sendResult = 0; - - FREGetObjectAsUTF8(argv[0], &lengthToSend, &dataToSend); - - sendResult = SendBuf(comPort, (unsigned char *)dataToSend, lengthToSend); - - if (sendResult == -1) - { - FRENewObjectFromBool(0, &result); - } - else - { - FRENewObjectFromBool(1, &result); - } - return result; -} - -FREObject sendByteArray(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - FREByteArray dataToSend; - int sendResult = 0; - - FREAcquireByteArray(argv[0], &dataToSend); - - sendResult = SendBuf(comPort, (unsigned char *)&dataToSend.bytes, dataToSend.length); - - FREReleaseByteArray(argv[0]); - - if (sendResult == -1) - { - FRENewObjectFromBool(0, &result); - } - else - { - FRENewObjectFromBool(1, &result); - } - return result; -} - -FREObject setupPort(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - int comPortError = 0; - int useDtrControl; - - FREGetObjectAsInt32(argv[0], &comPort); - FREGetObjectAsInt32(argv[1], &baud); - FREGetObjectAsInt32(argv[2], &useDtrControl); - - bufferSize = 0; - - comPortError = OpenComport(comPort,baud, useDtrControl); - if (comPortError == 0) - { - multiplatformSleep(100); - pthread_create(&ptrToThread, NULL, pollForData, NULL); - FRENewObjectFromBool(1, &result); - } - else - { - FRENewObjectFromBool(0, &result); - } - - return result; -} - -FREObject closePort(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) -{ - FREObject result; - - CloseComport(comPort); - FRENewObjectFromBool(1, &result); - - return result; -} - -void contextInitializer(void* extData, const uint8_t* ctxType, FREContext ctx, uint32_t* numFunctions, const FRENamedFunction** functions) -{ - *numFunctions = 11; - FRENamedFunction* func = (FRENamedFunction*) malloc(sizeof(FRENamedFunction) * (*numFunctions)); - - func[0].name = (const uint8_t*) "isSupported"; - func[0].functionData = NULL; - func[0].function = &isSupported; - - func[1].name = (const uint8_t*) "getBytesAsArray"; - func[1].functionData = NULL; - func[1].function = &getBytesAsArray; - - func[2].name = (const uint8_t*) "sendString"; - func[2].functionData = NULL; - func[2].function = &sendString; - - func[3].name = (const uint8_t*) "setupPort"; - func[3].functionData = NULL; - func[3].function = &setupPort; - - func[4].name = (const uint8_t*) "getBytesAsString"; - func[4].functionData = NULL; - func[4].function = &getBytesAsString; - - func[5].name = (const uint8_t*) "sendByteArray"; - func[5].functionData = NULL; - func[5].function = &sendByteArray; - - func[6].name = (const uint8_t*) "getBytesAsByteArray"; - func[6].functionData = NULL; - func[6].function = &getBytesAsByteArray; - - func[7].name = (const uint8_t*) "getByte"; - func[7].functionData = NULL; - func[7].function = &getByte; - - func[8].name = (const uint8_t*) "sendByte"; - func[8].functionData = NULL; - func[8].function = &sendByte; - - func[9].name = (const uint8_t*) "getAvailableBytes"; - func[9].functionData = NULL; - func[9].function = &getAvailableBytes; - - func[10].name = (const uint8_t*) "closePort"; - func[10].functionData = NULL; - func[10].function = &closePort; - - *functions = func; - - dllContext = ctx; - sentEvent = 0; -} - -void contextFinalizer(FREContext ctx) -{ - pthread_cancel(ptrToThread); - CloseComport(comPort); - return; -} - -void SerialANEinitializer(void** extData, FREContextInitializer* ctxInitializer, FREContextFinalizer* ctxFinalizer) -{ - *ctxInitializer = &contextInitializer; - *ctxFinalizer = &contextFinalizer; -} - -void SerialANEfinalizer(void* extData) -{ - FREContext nullCTX; - nullCTX = 0; //We want to point to the current contex. - contextFinalizer(nullCTX); - return; -} - diff --git a/native-extension/Windows-x86/SerialANE.h b/native-extension/Windows-x86/SerialANE.h deleted file mode 100644 index 12fbcaf..0000000 --- a/native-extension/Windows-x86/SerialANE.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Version: MPL 1.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is SerialANE.h - * - * The Initial Developer of the Original Code is Nicholas Kwiatkowski. - * Portions created by the Initial Developer are Copyright (C) 2011 - * the Initial Developer. All Rights Reserved. - * - */ - -#ifndef SERIALANE_H_ -#define SERIALANE_H_ - -#include "FlashRuntimeExtensions.h" // import the Adobe headers for the ANE - - __declspec(dllexport) void SerialANEinitializer(void** extData, FREContextInitializer* ctxInitializer, FREContextFinalizer* ctxFinalizer); - __declspec(dllexport) void SerialANEfinalizer(void* extData); - - -#endif /* SERIALANE_H_ */ diff --git a/native-extension/Windows-x86/gpl.txt b/native-extension/Windows-x86/gpl.txt deleted file mode 100644 index f2276f7..0000000 --- a/native-extension/Windows-x86/gpl.txt +++ /dev/null @@ -1,282 +0,0 @@ - - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - diff --git a/native-extension/Windows-x86/rs232.c b/native-extension/Windows-x86/rs232.c deleted file mode 100644 index ae2c50b..0000000 --- a/native-extension/Windows-x86/rs232.c +++ /dev/null @@ -1,382 +0,0 @@ -/* -*************************************************************************** -* -* Author: Teunis van Beelen -* -* Copyright (C) 2005, 2006, 2007, 2008, 2009 Teunis van Beelen -* -* teuniz@gmail.com -* -*************************************************************************** -* -* This program is free software; you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation version 2 of the License. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License along -* with this program; if not, write to the Free Software Foundation, Inc., -* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -* -*************************************************************************** -* -* This version of GPL is at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt -* -*************************************************************************** - -Updated 2011-11-25 by Nicholas Kwiatkowski to allow compatibility with MacOSX 10.4+ -Updated 2012-03-15 by Nicholas Kwiatkowski, with contributions from blanchard.glen. Allows COM Ports > 16 -Updated 2013-01-04 by Ellis Elkins on behalf of DirectAthletics to add the ability - to enable DTR Control when port opened from outside this class. - -*/ - -#include "rs232.h" - -#ifdef _WIN32 -HANDLE Cport[32]; - -char comport[11]; - -char baudr[64]; - -int OpenComport(int comport_number, int baudrate, int useDtrControl) -{ - if((comport_number>999)||(comport_number<0)) - { - printf("illegal comport number\n"); - return(1); - } - - sprintf(comport, "\\\\.\\COM%i", comport_number); - - switch(baudrate) - { - case 110 : strcpy(baudr, "baud=110 data=8 parity=N stop=1"); - break; - case 300 : strcpy(baudr, "baud=300 data=8 parity=N stop=1"); - break; - case 600 : strcpy(baudr, "baud=600 data=8 parity=N stop=1"); - break; - case 1200 : strcpy(baudr, "baud=1200 data=8 parity=N stop=1"); - break; - case 2400 : strcpy(baudr, "baud=2400 data=8 parity=N stop=1"); - break; - case 4800 : strcpy(baudr, "baud=4800 data=8 parity=N stop=1"); - break; - case 9600 : strcpy(baudr, "baud=9600 data=8 parity=N stop=1"); - break; - case 19200 : strcpy(baudr, "baud=19200 data=8 parity=N stop=1"); - break; - case 38400 : strcpy(baudr, "baud=38400 data=8 parity=N stop=1"); - break; - case 57600 : strcpy(baudr, "baud=57600 data=8 parity=N stop=1"); - break; - case 115200 : strcpy(baudr, "baud=115200 data=8 parity=N stop=1"); - break; - case 128000 : strcpy(baudr, "baud=128000 data=8 parity=N stop=1"); - break; - case 256000 : strcpy(baudr, "baud=256000 data=8 parity=N stop=1"); - break; - default : printf("invalid baudrate\n"); - return(1); - break; - } - - Cport[comport_number] = CreateFileA(comport, - GENERIC_READ|GENERIC_WRITE, - 0, /* no share */ - NULL, /* no security */ - OPEN_EXISTING, - 0, /* no threads */ - NULL); /* no templates */ - - if(Cport[comport_number]==INVALID_HANDLE_VALUE) - { - printf("unable to open comport\n"); - return(1); - } - - DCB port_settings; - memset(&port_settings, 0, sizeof(port_settings)); /* clear the new struct */ - port_settings.DCBlength = sizeof(port_settings); - - //use DTR control if specified. Disabled by default. - port_settings.fDtrControl = useDtrControl ? DTR_CONTROL_ENABLE : DTR_CONTROL_DISABLE; - - if(!BuildCommDCBA(baudr, &port_settings)) - { - printf("unable to set comport dcb settings\n"); - CloseHandle(Cport[comport_number]); - return(1); - } - - if(!SetCommState(Cport[comport_number], &port_settings)) - { - printf("unable to set comport cfg settings\n"); - CloseHandle(Cport[comport_number]); - return(1); - } - - COMMTIMEOUTS Cptimeouts; - - Cptimeouts.ReadIntervalTimeout = MAXDWORD; - Cptimeouts.ReadTotalTimeoutMultiplier = 0; - Cptimeouts.ReadTotalTimeoutConstant = 0; - Cptimeouts.WriteTotalTimeoutMultiplier = 0; - Cptimeouts.WriteTotalTimeoutConstant = 0; - - if(!SetCommTimeouts(Cport[comport_number], &Cptimeouts)) - { - printf("unable to set comport time-out settings\n"); - CloseHandle(Cport[comport_number]); - return(1); - } - - return(0); -} - - -int PollComport(int comport_number, unsigned char *buf, int size) -{ - int n; - - if(size>4096) size = 4096; - -/* added the void pointer cast, otherwise gcc will complain about */ -/* "warning: dereferencing type-punned pointer will break strict aliasing rules" */ - - ReadFile(Cport[comport_number], buf, size, (LPDWORD)((void *)&n), NULL); - - return(n); -} - - -int SendByte(int comport_number, unsigned char byte) -{ - int n; - - WriteFile(Cport[comport_number], &byte, 1, (LPDWORD)((void *)&n), NULL); - - if(n<0) return(1); - - return(0); -} - - -int SendBuf(int comport_number, unsigned char *buf, int size) -{ - int n; - - if(WriteFile(Cport[comport_number], buf, size, (LPDWORD)((void *)&n), NULL)) - { - return(n); - } - - return(-1); -} - - -void CloseComport(int comport_number) -{ - CloseHandle(Cport[comport_number]); -} - - -int IsCTSEnabled(int comport_number) -{ - int status; - - GetCommModemStatus(Cport[comport_number], (LPDWORD)((void *)&status)); - - if(status&MS_CTS_ON) return(1); - else return(0); -} - -#endif - -#ifdef __linux__ /* Linux */ - - -int Cport[22], - error; - -struct termios new_port_settings, - old_port_settings[22]; - -char comports[22][13]={"/dev/ttyS0","/dev/ttyS1","/dev/ttyS2","/dev/ttyS3","/dev/ttyS4","/dev/ttyS5", - "/dev/ttyS6","/dev/ttyS7","/dev/ttyS8","/dev/ttyS9","/dev/ttyS10","/dev/ttyS11", - "/dev/ttyS12","/dev/ttyS13","/dev/ttyS14","/dev/ttyS15","/dev/ttyUSB0", - "/dev/ttyUSB1","/dev/ttyUSB2","/dev/ttyUSB3","/dev/ttyUSB4","/dev/ttyUSB5"}; - - -int OpenComport(int comport_number, int baudrate, int useDtrControl) -{ - int baudr; - - if((comport_number>21)||(comport_number<0)) - { - printf("illegal comport number\n"); - return(1); - } - - switch(baudrate) - { - case 50 : baudr = B50; - break; - case 75 : baudr = B75; - break; - case 110 : baudr = B110; - break; - case 134 : baudr = B134; - break; - case 150 : baudr = B150; - break; - case 200 : baudr = B200; - break; - case 300 : baudr = B300; - break; - case 600 : baudr = B600; - break; - case 1200 : baudr = B1200; - break; - case 1800 : baudr = B1800; - break; - case 2400 : baudr = B2400; - break; - case 4800 : baudr = B4800; - break; - case 9600 : baudr = B9600; - break; - case 19200 : baudr = B19200; - break; - case 38400 : baudr = B38400; - break; - case 57600 : baudr = B57600; - break; - case 115200 : baudr = B115200; - break; - case 230400 : baudr = B230400; - break; - default : printf("invalid baudrate\n"); - return(1); - break; - } - - Cport[comport_number] = open(comports[comport_number], O_RDWR | O_NOCTTY | O_NDELAY); - if(Cport[comport_number]==-1) - { - perror("unable to open comport "); - return(1); - } - - //use DTR control if specified. Disabled by default. - int bits ; - ioctl( Cport[comport_number], TIOCMGET, &bits ) ; - if ( useDtrControl ) bits |= TIOCM_DTR ; else bits &= ~( TIOCM_DTR ) ; - ioctl( Cport[comport_number], TIOCMSET, &bits ) ; - - error = tcgetattr(Cport[comport_number], old_port_settings + comport_number); - if(error==-1) - { - close(Cport[comport_number]); - perror("unable to read portsettings "); - return(1); - } - memset(&new_port_settings, 0, sizeof(new_port_settings)); /* clear the new struct */ - - new_port_settings.c_cflag = baudr | CS8 | CLOCAL | CREAD; - new_port_settings.c_iflag = IGNPAR; - new_port_settings.c_oflag = 0; - new_port_settings.c_lflag = 0; - new_port_settings.c_cc[VMIN] = 0; /* block untill n bytes are received */ - new_port_settings.c_cc[VTIME] = 0; /* block untill a timer expires (n * 100 mSec.) */ - error = tcsetattr(Cport[comport_number], TCSANOW, &new_port_settings); - if(error==-1) - { - close(Cport[comport_number]); - perror("unable to adjust portsettings "); - return(1); - } - - return(0); -} - - -int PollComport(int comport_number, unsigned char *buf, int size) -{ - int n; - -#ifndef __STRICT_ANSI__ /* __STRICT_ANSI__ is defined when the -ansi option is used for gcc */ - if(size>SSIZE_MAX) size = (int)SSIZE_MAX; /* SSIZE_MAX is defined in limits.h */ -#else - if(size>4096) size = 4096; -#endif - - n = read(Cport[comport_number], buf, size); - - return(n); -} - - -int SendByte(int comport_number, unsigned char byte) -{ - int n; - - n = write(Cport[comport_number], &byte, 1); - if(n<0) return(1); - - return(0); -} - - -int SendBuf(int comport_number, unsigned char *buf, int size) -{ - return(write(Cport[comport_number], buf, size)); -} - - -void CloseComport(int comport_number) -{ - close(Cport[comport_number]); - tcsetattr(Cport[comport_number], TCSANOW, old_port_settings + comport_number); -} - -/* -Constant Description -TIOCM_LE DSR (data set ready/line enable) -TIOCM_DTR DTR (data terminal ready) -TIOCM_RTS RTS (request to send) -TIOCM_ST Secondary TXD (transmit) -TIOCM_SR Secondary RXD (receive) -TIOCM_CTS CTS (clear to send) -TIOCM_CAR DCD (data carrier detect) -TIOCM_CD Synonym for TIOCM_CAR -TIOCM_RNG RNG (ring) -TIOCM_RI Synonym for TIOCM_RNG -TIOCM_DSR DSR (data set ready) -*/ - -int IsCTSEnabled(int comport_number) -{ - int status; - - status = ioctl(Cport[comport_number], TIOCMGET, &status); - - if(status&TIOCM_CTS) return(1); - else return(0); -} - -#endif - - -void cprintf(int comport_number, const char *text) /* sends a string to serial port */ -{ - while(*text != 0) SendByte(comport_number, *(text++)); -} - - diff --git a/native-extension/Windows-x86/rs232.h b/native-extension/Windows-x86/rs232.h deleted file mode 100644 index 8c97d8a..0000000 --- a/native-extension/Windows-x86/rs232.h +++ /dev/null @@ -1,77 +0,0 @@ -/* -*************************************************************************** -* -* Author: Teunis van Beelen -* -* Copyright (C) 2005, 2006, 2007, 2008, 2009 Teunis van Beelen -* -* teuniz@gmail.com -* -*************************************************************************** -* -* This program is free software; you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation version 2 of the License. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License along -* with this program; if not, write to the Free Software Foundation, Inc., -* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -* -*************************************************************************** -* -* This version of GPL is at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt -* -*************************************************************************** -*/ - - - -#ifndef rs232_INCLUDED -#define rs232_INCLUDED - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include - - - -#ifdef _WIN32 - -#include - -#else - -#include -#include -#include -#include -#include -#include -#include - -#endif - -int OpenComport(int, int, int); -int PollComport(int, unsigned char *, int); -int SendByte(int, unsigned char); -int SendBuf(int, unsigned char *, int); -void CloseComport(int); -void cprintf(int, const char *); -int IsCTSEnabled(int); - - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif - -