Languages

Menu
Sites
Language
Application crashes instantly?

I'm running an application, but it appears to crash instantly. The logs say that it cannot attach to the process, and when running "native-debug", I get the error:

Cannot access memory at address 0x0
[Inferior 1 (process 12474) exited with code 0377]

Currently, I'm not able to see any "printf" log output, or AppLog output for that matter. I modified one of the sample applications to have an "int main", and it still ran properly. I was concerned this may be the problem. Interestingly, if I try to remove the "int main" from my our codebase, we have a linker error, that crt1.so is referencing main from the "start" method. This doesn't appear to be required in the sample, so I'm not sure if this is implied behavior from somewhere else, and if this may be the cause of some of our trouble?

Is there a place to get printf log output, and are there more details about the application start-up process using OSP, regarding main vs. OspMain, etc?

Responses

8 Replies
Pushpa G

Hi,

I ran sample apps available in IDE, it ran successfully in 2.2.1 emulator. I dint face the above issue and also AppLog("test") statements are getting printed.

Is this issue happening to you with all the sample apps or only in your app? If it sin your app, then attach your app here so that i can check it

Pushpa G

You can get/see the AppLog() output in the Log pane of the IDE . If Log pane is not seen in the IDE, then go to Window menu in the IDE->Show view>Log, then you can see it

Slawek Kowalski

Please open any sample project (File->New->Tizen Native project ->Sample) and then build project. It should work.

 

AppLog() doesn't print in Release mode. Make sure you have switched for Debug.

 

hgw7

'Cannot access memory' must be due to a dangling pointer. The pointer to arguments of the modified 'main' must be contaning garbage values. 0377 is the status code returned to the parent by a call to exit() in your program.
Also, what did  you modify in the sample program to change from 'Ospmain' to 'int main' ?

Joshua Granick

The OS doesn't provide a lot of indication why execution fails, but I've determined that the above error (or similar) occurs in multiple scenarios:

  • If you deploy an i386 executable to an ARM device
  • If you replace (but rename) the binary from one application, and package it in another
  • If you did something else wrong :(

It's curious that taking a valid executable from application, and packaging in another throws this error. Is this is somehow related to the "rpath" when building the binary, or is there any other reason why this is not supposed to work? Thanks

Joshua Granick

In the Tizen sample app, I was able to write a file under /tmp, to get log output. In our application, putting this in the OspMain, similarly, before doing anything else, does not come through. As a result, I must conclude that our application code is not being executed at all.

What resources are available for debugging why this may occur? I've tried executing applications directly from "sdb shell" or using "launch_app" from the shell, as well, and neither works. Currently, the only feedback I get is that it doesn't work, but no way to determine how. I'm actually converting code to C++, and use a different build system than cannot be integrated with the Tizen IDE right now, so that doesn't help.

I know this is long, but if its valuable, here as an example of the commands we are calling:

arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -frtti -o ./obj/tizen-debug/__pch/haxe/hxcpp.h.gch /Users/joshua/Development/Haxe/hxlibc/include/hxcpp.h
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/piratepig/Tile.cpp -o./obj/tizen-debug/src/piratepig/Tile.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/piratepig/PiratePigGame.cpp -o./obj/tizen-debug/src/piratepig/PiratePigGame.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/utils/WeakRef.cpp -o./obj/tizen-debug/src/openfl/utils/WeakRef.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/events/SystemEvent.cpp -o./obj/tizen-debug/src/openfl/events/SystemEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/events/JoystickEvent.cpp -o./obj/tizen-debug/src/openfl/events/JoystickEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/display/Tilesheet.cpp -o./obj/tizen-debug/src/openfl/display/Tilesheet.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/display/ManagedStage.cpp -o./obj/tizen-debug/src/openfl/display/ManagedStage.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/AssetType.cpp -o./obj/tizen-debug/src/openfl/AssetType.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/AssetData.cpp -o./obj/tizen-debug/src/openfl/AssetData.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/Assets.cpp -o./obj/tizen-debug/src/openfl/Assets.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/AssetCache.cpp -o./obj/tizen-debug/src/openfl/AssetCache.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/QuadEaseOut.cpp -o./obj/tizen-debug/src/motion/easing/QuadEaseOut.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/QuadEaseInOut.cpp -o./obj/tizen-debug/src/motion/easing/QuadEaseInOut.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/QuadEaseIn.cpp -o./obj/tizen-debug/src/motion/easing/QuadEaseIn.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/Quad.cpp -o./obj/tizen-debug/src/motion/easing/Quad.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/LinearEaseNone.cpp -o./obj/tizen-debug/src/motion/easing/LinearEaseNone.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/Linear.cpp -o./obj/tizen-debug/src/motion/easing/Linear.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/ExpoEaseInOut.cpp -o./obj/tizen-debug/src/motion/easing/ExpoEaseInOut.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/ExpoEaseIn.cpp -o./obj/tizen-debug/src/motion/easing/ExpoEaseIn.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/TransformActuator.cpp -o./obj/tizen-debug/src/motion/actuators/TransformActuator.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/PropertyPathDetails.cpp -o./obj/tizen-debug/src/motion/actuators/PropertyPathDetails.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/PropertyDetails.cpp -o./obj/tizen-debug/src/motion/actuators/PropertyDetails.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/MotionPathActuator.cpp -o./obj/tizen-debug/src/motion/actuators/MotionPathActuator.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/MethodActuator.cpp -o./obj/tizen-debug/src/motion/actuators/MethodActuator.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/FilterActuator.cpp -o./obj/tizen-debug/src/motion/actuators/FilterActuator.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/RotationPath.cpp -o./obj/tizen-debug/src/motion/RotationPath.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/LinearPath.cpp -o./obj/tizen-debug/src/motion/LinearPath.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/BezierPath.cpp -o./obj/tizen-debug/src/motion/BezierPath.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/ComponentPath.cpp -o./obj/tizen-debug/src/motion/ComponentPath.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/IComponentPath.cpp -o./obj/tizen-debug/src/motion/IComponentPath.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/MotionPath.cpp -o./obj/tizen-debug/src/motion/MotionPath.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/_Actuate/TweenTimer.cpp -o./obj/tizen-debug/src/motion/_Actuate/TweenTimer.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/_Actuate/TransformOptions.cpp -o./obj/tizen-debug/src/motion/_Actuate/TransformOptions.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/_Actuate/EffectsOptions.cpp -o./obj/tizen-debug/src/motion/_Actuate/EffectsOptions.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/Actuate.cpp -o./obj/tizen-debug/src/motion/Actuate.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/ExpoEaseOut.cpp -o./obj/tizen-debug/src/motion/easing/ExpoEaseOut.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/IEasing.cpp -o./obj/tizen-debug/src/motion/easing/IEasing.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/Expo.cpp -o./obj/tizen-debug/src/motion/easing/Expo.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/SimpleActuator.cpp -o./obj/tizen-debug/src/motion/actuators/SimpleActuator.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/GenericActuator.cpp -o./obj/tizen-debug/src/motion/actuators/GenericActuator.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/IGenericActuator.cpp -o./obj/tizen-debug/src/motion/actuators/IGenericActuator.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/io/Error.cpp -o./obj/tizen-debug/src/haxe/io/Error.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/io/Eof.cpp -o./obj/tizen-debug/src/haxe/io/Eof.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/io/BytesBuffer.cpp -o./obj/tizen-debug/src/haxe/io/BytesBuffer.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/ds/StringMap.cpp -o./obj/tizen-debug/src/haxe/ds/StringMap.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/ds/ObjectMap.cpp -o./obj/tizen-debug/src/haxe/ds/ObjectMap.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/ds/IntMap.cpp -o./obj/tizen-debug/src/haxe/ds/IntMap.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/Unserializer.cpp -o./obj/tizen-debug/src/haxe/Unserializer.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/Timer.cpp -o./obj/tizen-debug/src/haxe/Timer.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/Resource.cpp -o./obj/tizen-debug/src/haxe/Resource.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/Log.cpp -o./obj/tizen-debug/src/haxe/Log.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/utils/Endian.cpp -o./obj/tizen-debug/src/flash/utils/Endian.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/utils/CompressionAlgorithm.cpp -o./obj/tizen-debug/src/flash/utils/CompressionAlgorithm.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/utils/ByteArray.cpp -o./obj/tizen-debug/src/flash/utils/ByteArray.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/utils/IDataInput.cpp -o./obj/tizen-debug/src/flash/utils/IDataInput.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/utils/IMemoryRange.cpp -o./obj/tizen-debug/src/openfl/utils/IMemoryRange.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/utils/IDataOutput.cpp -o./obj/tizen-debug/src/flash/utils/IDataOutput.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/ui/Keyboard.cpp -o./obj/tizen-debug/src/flash/ui/Keyboard.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/TextLineMetrics.cpp -o./obj/tizen-debug/src/flash/text/TextLineMetrics.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/TextFormatAlign.cpp -o./obj/tizen-debug/src/flash/text/TextFormatAlign.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/TextFormat.cpp -o./obj/tizen-debug/src/flash/text/TextFormat.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/TextFieldType.cpp -o./obj/tizen-debug/src/flash/text/TextFieldType.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/TextFieldAutoSize.cpp -o./obj/tizen-debug/src/flash/text/TextFieldAutoSize.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/TextField.cpp -o./obj/tizen-debug/src/flash/text/TextField.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/GridFitType.cpp -o./obj/tizen-debug/src/flash/text/GridFitType.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/FontType.cpp -o./obj/tizen-debug/src/flash/text/FontType.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/FontStyle.cpp -o./obj/tizen-debug/src/flash/text/FontStyle.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/Font.cpp -o./obj/tizen-debug/src/flash/text/Font.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/AntiAliasType.cpp -o./obj/tizen-debug/src/flash/text/AntiAliasType.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/system/SecurityDomain.cpp -o./obj/tizen-debug/src/flash/system/SecurityDomain.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/system/LoaderContext.cpp -o./obj/tizen-debug/src/flash/system/LoaderContext.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/system/Capabilities.cpp -o./obj/tizen-debug/src/flash/system/Capabilities.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/system/ApplicationDomain.cpp -o./obj/tizen-debug/src/flash/system/ApplicationDomain.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/net/URLVariables.cpp -o./obj/tizen-debug/src/flash/net/URLVariables.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/net/URLRequestMethod.cpp -o./obj/tizen-debug/src/flash/net/URLRequestMethod.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/net/URLRequestHeader.cpp -o./obj/tizen-debug/src/flash/net/URLRequestHeader.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/net/URLRequest.cpp -o./obj/tizen-debug/src/flash/net/URLRequest.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/net/URLLoaderDataFormat.cpp -o./obj/tizen-debug/src/flash/net/URLLoaderDataFormat.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/media/SoundTransform.cpp -o./obj/tizen-debug/src/flash/media/SoundTransform.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/media/SoundLoaderContext.cpp -o./obj/tizen-debug/src/flash/media/SoundLoaderContext.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/media/SoundChannel.cpp -o./obj/tizen-debug/src/flash/media/SoundChannel.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/media/Sound.cpp -o./obj/tizen-debug/src/flash/media/Sound.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/media/ID3Info.cpp -o./obj/tizen-debug/src/flash/media/ID3Info.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/geom/Vector3D.cpp -o./obj/tizen-debug/src/flash/geom/Vector3D.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/geom/Transform.cpp -o./obj/tizen-debug/src/flash/geom/Transform.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/geom/Rectangle.cpp -o./obj/tizen-debug/src/flash/geom/Rectangle.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/geom/Point.cpp -o./obj/tizen-debug/src/flash/geom/Point.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/geom/Matrix.cpp -o./obj/tizen-debug/src/flash/geom/Matrix.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/geom/ColorTransform.cpp -o./obj/tizen-debug/src/flash/geom/ColorTransform.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/filters/DropShadowFilter.cpp -o./obj/tizen-debug/src/flash/filters/DropShadowFilter.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/filters/BlurFilter.cpp -o./obj/tizen-debug/src/flash/filters/BlurFilter.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/filters/BitmapFilter.cpp -o./obj/tizen-debug/src/flash/filters/BitmapFilter.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/UncaughtErrorEvents.cpp -o./obj/tizen-debug/src/flash/events/UncaughtErrorEvents.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/UncaughtErrorEvent.cpp -o./obj/tizen-debug/src/flash/events/UncaughtErrorEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/SampleDataEvent.cpp -o./obj/tizen-debug/src/flash/events/SampleDataEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/ProgressEvent.cpp -o./obj/tizen-debug/src/flash/events/ProgressEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/KeyboardEvent.cpp -o./obj/tizen-debug/src/flash/events/KeyboardEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/IOErrorEvent.cpp -o./obj/tizen-debug/src/flash/events/IOErrorEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/HTTPStatusEvent.cpp -o./obj/tizen-debug/src/flash/events/HTTPStatusEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/FocusEvent.cpp -o./obj/tizen-debug/src/flash/events/FocusEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/EventPhase.cpp -o./obj/tizen-debug/src/flash/events/EventPhase.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/Listener.cpp -o./obj/tizen-debug/src/flash/events/Listener.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/ErrorEvent.cpp -o./obj/tizen-debug/src/flash/events/ErrorEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/TextEvent.cpp -o./obj/tizen-debug/src/flash/events/TextEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/errors/RangeError.cpp -o./obj/tizen-debug/src/flash/errors/RangeError.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/errors/EOFError.cpp -o./obj/tizen-debug/src/flash/errors/EOFError.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/errors/ArgumentError.cpp -o./obj/tizen-debug/src/flash/errors/ArgumentError.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/errors/Error.cpp -o./obj/tizen-debug/src/flash/errors/Error.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/TriangleCulling.cpp -o./obj/tizen-debug/src/flash/display/TriangleCulling.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/StageScaleMode.cpp -o./obj/tizen-debug/src/flash/display/StageScaleMode.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/StageQuality.cpp -o./obj/tizen-debug/src/flash/display/StageQuality.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/StageDisplayState.cpp -o./obj/tizen-debug/src/flash/display/StageDisplayState.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/StageAlign.cpp -o./obj/tizen-debug/src/flash/display/StageAlign.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/TouchInfo.cpp -o./obj/tizen-debug/src/flash/display/TouchInfo.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/Stage.cpp -o./obj/tizen-debug/src/flash/display/Stage.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/TouchEvent.cpp -o./obj/tizen-debug/src/flash/events/TouchEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/MouseEvent.cpp -o./obj/tizen-debug/src/flash/events/MouseEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/Event.cpp -o./obj/tizen-debug/src/flash/events/Event.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/SpreadMethod.cpp -o./obj/tizen-debug/src/flash/display/SpreadMethod.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/Shape.cpp -o./obj/tizen-debug/src/flash/display/Shape.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/PixelSnapping.cpp -o./obj/tizen-debug/src/flash/display/PixelSnapping.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/MovieClip.cpp -o./obj/tizen-debug/src/flash/display/MovieClip.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/LoaderInfo.cpp -o./obj/tizen-debug/src/flash/display/LoaderInfo.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/net/URLLoader.cpp -o./obj/tizen-debug/src/flash/net/URLLoader.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/Loader.cpp -o./obj/tizen-debug/src/flash/display/Loader.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/LineScaleMode.cpp -o./obj/tizen-debug/src/flash/display/LineScaleMode.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/JointStyle.cpp -o./obj/tizen-debug/src/flash/display/JointStyle.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/InterpolationMethod.cpp -o./obj/tizen-debug/src/flash/display/InterpolationMethod.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/IGraphicsData.cpp -o./obj/tizen-debug/src/flash/display/IGraphicsData.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/GraphicsPathWinding.cpp -o./obj/tizen-debug/src/flash/display/GraphicsPathWinding.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/Graphics.cpp -o./obj/tizen-debug/src/flash/display/Graphics.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/GradientType.cpp -o./obj/tizen-debug/src/flash/display/GradientType.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/CapsStyle.cpp -o./obj/tizen-debug/src/flash/display/CapsStyle.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/BlendMode.cpp -o./obj/tizen-debug/src/flash/display/BlendMode.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/OptimizedPerlin.cpp -o./obj/tizen-debug/src/flash/display/OptimizedPerlin.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/BitmapData.cpp -o./obj/tizen-debug/src/flash/display/BitmapData.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/Bitmap.cpp -o./obj/tizen-debug/src/flash/display/Bitmap.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/_Vector/Vector_Impl_.cpp -o./obj/tizen-debug/src/flash/_Vector/Vector_Impl_.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/Memory.cpp -o./obj/tizen-debug/src/flash/Memory.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/cpp/zip/Uncompress.cpp -o./obj/tizen-debug/src/cpp/zip/Uncompress.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/cpp/zip/Flush.cpp -o./obj/tizen-debug/src/cpp/zip/Flush.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/cpp/zip/Compress.cpp -o./obj/tizen-debug/src/cpp/zip/Compress.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/cpp/rtti/FieldNumericIntegerLookup.cpp -o./obj/tizen-debug/src/cpp/rtti/FieldNumericIntegerLookup.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/Type.cpp -o./obj/tizen-debug/src/Type.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/StringTools.cpp -o./obj/tizen-debug/src/StringTools.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/StringBuf.cpp -o./obj/tizen-debug/src/StringBuf.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/Reflect.cpp -o./obj/tizen-debug/src/Reflect.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/IMap.cpp -o./obj/tizen-debug/src/IMap.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/List.cpp -o./obj/tizen-debug/src/List.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/DefaultAssetLibrary.cpp -o./obj/tizen-debug/src/DefaultAssetLibrary.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/AssetLibrary.cpp -o./obj/tizen-debug/src/openfl/AssetLibrary.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/Date.cpp -o./obj/tizen-debug/src/Date.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/DocumentClass.cpp -o./obj/tizen-debug/src/DocumentClass.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/piratepig/PiratePig.cpp -o./obj/tizen-debug/src/piratepig/PiratePig.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/Sprite.cpp -o./obj/tizen-debug/src/flash/display/Sprite.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/DisplayObjectContainer.cpp -o./obj/tizen-debug/src/flash/display/DisplayObjectContainer.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/InteractiveObject.cpp -o./obj/tizen-debug/src/flash/display/InteractiveObject.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/DisplayObject.cpp -o./obj/tizen-debug/src/flash/display/DisplayObject.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/Lib.cpp -o./obj/tizen-debug/src/flash/Lib.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/Std.cpp -o./obj/tizen-debug/src/Std.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/sys/io/_Process/Stdout.cpp -o./obj/tizen-debug/src/sys/io/_Process/Stdout.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/io/Input.cpp -o./obj/tizen-debug/src/haxe/io/Input.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/io/Bytes.cpp -o./obj/tizen-debug/src/haxe/io/Bytes.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/sys/io/_Process/Stdin.cpp -o./obj/tizen-debug/src/sys/io/_Process/Stdin.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/io/Output.cpp -o./obj/tizen-debug/src/haxe/io/Output.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/sys/io/Process.cpp -o./obj/tizen-debug/src/sys/io/Process.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/Sys.cpp -o./obj/tizen-debug/src/Sys.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/cpp/Lib.cpp -o./obj/tizen-debug/src/cpp/Lib.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/IBitmapDrawable.cpp -o./obj/tizen-debug/src/flash/display/IBitmapDrawable.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/EventDispatcher.cpp -o./obj/tizen-debug/src/flash/events/EventDispatcher.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/IEventDispatcher.cpp -o./obj/tizen-debug/src/flash/events/IEventDispatcher.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/ApplicationMain.cpp -o./obj/tizen-debug/src/ApplicationMain.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/__boot__.cpp -o./obj/tizen-debug/src/__boot__.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/__files__.cpp -o./obj/tizen-debug/src/__files__.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/__resources__.cpp -o./obj/tizen-debug/src/__resources__.o
arm-linux-gnueabi-g++ -Iinclude -DHX_DECLARE_MAIN -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti ./src/__main__.cpp -o./obj/tizen-debug/src/__main__.o
Creating ./obj/tizen-debug/__pch/runtime/hxcpp.h.gch...
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -frtti -o ./obj/tizen-debug/__pch/runtime/hxcpp.h.gch /Users/joshua/Development/Haxe/hxlibc/include/hxcpp.h
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Anon.cpp -o./obj/tizen-debug/src/hx/Anon.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Boot.cpp -o./obj/tizen-debug/src/hx/Boot.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/CFFI.cpp -o./obj/tizen-debug/src/hx/CFFI.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Date.cpp -o./obj/tizen-debug/src/hx/Date.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/GC.cpp -o./obj/tizen-debug/src/hx/GC.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/GCInternal.cpp -o./obj/tizen-debug/src/hx/GCInternal.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Hash.cpp -o./obj/tizen-debug/src/hx/Hash.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Interface.cpp -o./obj/tizen-debug/src/hx/Interface.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Lib.cpp -o./obj/tizen-debug/src/hx/Lib.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Object.cpp -o./obj/tizen-debug/src/hx/Object.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/StdLibs.cpp -o./obj/tizen-debug/src/hx/StdLibs.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Debug.cpp -o./obj/tizen-debug/src/hx/Debug.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Thread.cpp -o./obj/tizen-debug/src/hx/Thread.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/Array.cpp -o./obj/tizen-debug/src/Array.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/Class.cpp -o./obj/tizen-debug/src/Class.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/Dynamic.cpp -o./obj/tizen-debug/src/Dynamic.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/Enum.cpp -o./obj/tizen-debug/src/Enum.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/Math.cpp -o./obj/tizen-debug/src/Math.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/String.cpp -o./obj/tizen-debug/src/String.o
arm-linux-gnueabi-g++ -oApplicationMain-debug.exe -g -pie -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -Xlinker --as-needed -Xlinker -rpath=/opt/usr/apps/AAfw97S4em/lib -Xlinker -rpath=/home/developer/sdk_tools/lib --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -L/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/lib -L/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/lib/osp @all_objs -lpthread -losp-uifw -losp-appfw -losp-image -losp-json -losp-ime -losp-net -lpthread -losp-content -losp-locations -losp-telephony -losp-uix -losp-media -losp-uix -losp-media -losp-messaging -losp-web -losp-social -losp-wifi -losp-bluetooth -losp-nfc -losp-face -losp-secure-element -losp-speech-tts -losp-speech-stt -losp-shell -losp-shell-core -lxml2 -lalut -lopenal -ldl
Copying files...
rm -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk"
mkdir -p "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/shared"
rm -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/AAfw97S4em-1.0.0-arm.tpk"
rm -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/AAfw97S4em-1.0.0-arm-debug.zip"
mkdir -p "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/data"
cp -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/../shared/res" "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/shared/res"
mkdir -p "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/shared/data"
mkdir -p "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/shared/trusted"
cp -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/../lib" "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/lib"
cp -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/../res" "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/res"
mkdir -p "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/setting"
cp -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/../bin" "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/bin"
cp -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/PiratePig.exe" "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/bin/PiratePig.exe"
mkdir -p "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/info"
cp -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/../manifest.xml" "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/info/manifest.xml"
Signing...
"/Users/joshua/Development/Tizen/tizen-sdk/tools/smart-build-interface/../ide/bin/native-signing" "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk" " " "/Users/joshua/Development/Tizen/tizen-sdk-data/keystore/author/author" "****" " " "****" " " " " "****" " " " "
The message is ""
Zipping...
cd "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk" ; zip -rv "../AAfw97S4em-1.0.0-arm.tpk" . 
  adding: .manifest.tmp    (in=1675) (out=1064) (deflated 36%)
  adding: author-signature.xml	(in=8089) (out=3055) (deflated 62%)
  adding: bin/	(in=0) (out=0) (stored 0%)
  adding: bin/PiratePig .	(in=19568407) (out=5459500) (deflated 72%)
  adding: data/	(in=0) (out=0) (stored 0%)
  adding: info/	(in=0) (out=0) (stored 0%)
  adding: info/manifest.xml	(in=762) (out=414) (deflated 46%)
  adding: lib/	(in=0) (out=0) (stored 0%)
  adding: lib/nme.so 	(in=8506620) (out=2463158) (deflated 71%)
  adding: lib/regexp.so 	(in=155748) (out=55598) (deflated 64%)
  adding: lib/std.so 	(in=76376) (out=27721) (deflated 64%)
  adding: lib/zlib.so 	(in=88452) (out=46264) (deflated 48%)
  adding: res/	(in=0) (out=0) (stored 0%)
  adding: res/fonts/	(in=0) (out=0) (stored 0%)
  adding: res/fonts/FreebooterUpdated.ttf 	(in=102764) (out=51902) (deflated 49%)
  adding: res/images/	(in=0) (out=0) (stored 0%)
  adding: res/images/background_tile.png	(in=16510) (out=1641) (deflated 90%)
  adding: res/images/center_bottom.png 	(in=157449) (out=156539) (deflated 1%)
  adding: res/images/game_bear.png	(in=1249) (out=1249) (stored 0%)
  adding: res/images/game_bunny_02.png	(in=1062) (out=1062) (stored 0%)
  adding: res/images/game_carrot.png	(in=1310) (out=1310) (stored 0%)
  adding: res/images/game_lemon.png	(in=1499) (out=1499) (stored 0%)
  adding: res/images/game_panda.png	(in=969) (out=969) (stored 0%)
  adding: res/images/game_piratePig.png	(in=1737) (out=1737) (stored 0%)
  adding: res/images/logo.png	(in=19199) (out=18879) (deflated 2%)
  adding: res/manifest	(in=743) (out=296) (deflated 60%)
  adding: res/sounds/	(in=0) (out=0) (stored 0%)
  adding: res/sounds/3.wav	(in=14432) (out=7053) (deflated 51%)
  adding: res/sounds/4.wav 	(in=135984) (out=86332) (deflated 37%)
  adding: res/sounds/5.wav 	(in=441044) (out=139059) (deflated 68%)
  adding: res/sounds/theme.ogg 	(in=167574) (out=163697) (deflated 2%)
  adding: setting/	(in=0) (out=0) (stored 0%)
  adding: shared/	(in=0) (out=0) (stored 0%)
  adding: shared/data/	(in=0) (out=0) (stored 0%)
  adding: shared/res/	(in=0) (out=0) (stored 0%)
  adding: shared/res/screen-density-xhigh/	(in=0) (out=0) (stored 0%)
  adding: shared/res/screen-density-xhigh/icon.png	(in=3737) (out=3737) (stored 0%)
  adding: shared/trusted/	(in=0) (out=0) (stored 0%)
  adding: signature1.xml	(in=8109) (out=2812) (deflated 65%)
total bytes=29481500, compressed=8696547 -> 71% savings
Packaging completed... OK
PLATFORM_NAME	: 
PLATFORM_VER	: Tizen 2.2
ARCHITECTURE	: armel
TOOLCHAIN	: GCC-4.5
PROJECT_TYPE	: app
PROJECT_NAME	: PiratePig
APPLICATION_ID	: AAfw97S4em
Info: Target already exists. [tizen-device-2.2.native_gcc45.armel.cpp.app]
cp: /Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/PiratePig.exe: No such file or directory
pushed: /Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/AAfw97S4em-1.0.0-arm.tpk -> /opt/usr/apps/tmp/AAfw97S4em-1.0.0-arm.tpk 
1 file(s) pushed. 0 file(s) skipped.
/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/AAfw97S4em-1.0.0-arm.tpk   3396 KB/s (8702851 bytes in 2.502s)
path is /opt/usr/apps/tmp/AAfw97S4em-1.0.0-arm.tpk
__return_cb req_id[1] pkg_type[tpk] pkgid[AAfw97S4em] key[start] val[install]
__return_cb req_id[1] pkg_type[tpk] pkgid[AAfw97S4em] key[install_percent] val[0]
__return_cb req_id[1] pkg_type[tpk] pkgid[AAfw97S4em] key[install_percent] val[60]
__return_cb req_id[1] pkg_type[tpk] pkgid[AAfw97S4em] key[install_percent] val[100]
__return_cb req_id[1] pkg_type[tpk] pkgid[AAfw97S4em] key[end] val[ok]
spend time for pkgcmd is [13034]ms

To launch the application, run native-run with -p <pkg_name>.
And to debug the application, run native-debug with -p <pkg_name>.
... successfully launched

Our application doesn't run at all, and so far, no real sign of how to determine the problem :(

Joshua Granick

In the Tizen sample app, I was able to write a file under /tmp, to get log output. In our application, putting this in the OspMain, similarly, before doing anything else, does not come through. As a result, I must conclude that our application code is not being executed at all.

What resources are available for debugging why this may occur? I've tried executing applications directly from "sdb shell" or using "launch_app" from the shell, as well, and neither works. Currently, the only feedback I get is that it doesn't work, but no way to determine how. I'm actually converting code to C++, and use a different build system than cannot be integrated with the Tizen IDE right now, so that doesn't help.

I know this is long, but if its valuable, here as an example of the commands we are calling:

arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -frtti -o ./obj/tizen-debug/__pch/haxe/hxcpp.h.gch /Users/joshua/Development/Haxe/hxlibc/include/hxcpp.h
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/piratepig/Tile.cpp -o./obj/tizen-debug/src/piratepig/Tile.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/piratepig/PiratePigGame.cpp -o./obj/tizen-debug/src/piratepig/PiratePigGame.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/utils/WeakRef.cpp -o./obj/tizen-debug/src/openfl/utils/WeakRef.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/events/SystemEvent.cpp -o./obj/tizen-debug/src/openfl/events/SystemEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/events/JoystickEvent.cpp -o./obj/tizen-debug/src/openfl/events/JoystickEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/display/Tilesheet.cpp -o./obj/tizen-debug/src/openfl/display/Tilesheet.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/display/ManagedStage.cpp -o./obj/tizen-debug/src/openfl/display/ManagedStage.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/AssetType.cpp -o./obj/tizen-debug/src/openfl/AssetType.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/AssetData.cpp -o./obj/tizen-debug/src/openfl/AssetData.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/Assets.cpp -o./obj/tizen-debug/src/openfl/Assets.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/AssetCache.cpp -o./obj/tizen-debug/src/openfl/AssetCache.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/QuadEaseOut.cpp -o./obj/tizen-debug/src/motion/easing/QuadEaseOut.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/QuadEaseInOut.cpp -o./obj/tizen-debug/src/motion/easing/QuadEaseInOut.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/QuadEaseIn.cpp -o./obj/tizen-debug/src/motion/easing/QuadEaseIn.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/Quad.cpp -o./obj/tizen-debug/src/motion/easing/Quad.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/LinearEaseNone.cpp -o./obj/tizen-debug/src/motion/easing/LinearEaseNone.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/Linear.cpp -o./obj/tizen-debug/src/motion/easing/Linear.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/ExpoEaseInOut.cpp -o./obj/tizen-debug/src/motion/easing/ExpoEaseInOut.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/ExpoEaseIn.cpp -o./obj/tizen-debug/src/motion/easing/ExpoEaseIn.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/TransformActuator.cpp -o./obj/tizen-debug/src/motion/actuators/TransformActuator.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/PropertyPathDetails.cpp -o./obj/tizen-debug/src/motion/actuators/PropertyPathDetails.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/PropertyDetails.cpp -o./obj/tizen-debug/src/motion/actuators/PropertyDetails.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/MotionPathActuator.cpp -o./obj/tizen-debug/src/motion/actuators/MotionPathActuator.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/MethodActuator.cpp -o./obj/tizen-debug/src/motion/actuators/MethodActuator.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/FilterActuator.cpp -o./obj/tizen-debug/src/motion/actuators/FilterActuator.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/RotationPath.cpp -o./obj/tizen-debug/src/motion/RotationPath.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/LinearPath.cpp -o./obj/tizen-debug/src/motion/LinearPath.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/BezierPath.cpp -o./obj/tizen-debug/src/motion/BezierPath.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/ComponentPath.cpp -o./obj/tizen-debug/src/motion/ComponentPath.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/IComponentPath.cpp -o./obj/tizen-debug/src/motion/IComponentPath.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/MotionPath.cpp -o./obj/tizen-debug/src/motion/MotionPath.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/_Actuate/TweenTimer.cpp -o./obj/tizen-debug/src/motion/_Actuate/TweenTimer.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/_Actuate/TransformOptions.cpp -o./obj/tizen-debug/src/motion/_Actuate/TransformOptions.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/_Actuate/EffectsOptions.cpp -o./obj/tizen-debug/src/motion/_Actuate/EffectsOptions.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/Actuate.cpp -o./obj/tizen-debug/src/motion/Actuate.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/ExpoEaseOut.cpp -o./obj/tizen-debug/src/motion/easing/ExpoEaseOut.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/IEasing.cpp -o./obj/tizen-debug/src/motion/easing/IEasing.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/easing/Expo.cpp -o./obj/tizen-debug/src/motion/easing/Expo.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/SimpleActuator.cpp -o./obj/tizen-debug/src/motion/actuators/SimpleActuator.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/GenericActuator.cpp -o./obj/tizen-debug/src/motion/actuators/GenericActuator.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/motion/actuators/IGenericActuator.cpp -o./obj/tizen-debug/src/motion/actuators/IGenericActuator.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/io/Error.cpp -o./obj/tizen-debug/src/haxe/io/Error.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/io/Eof.cpp -o./obj/tizen-debug/src/haxe/io/Eof.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/io/BytesBuffer.cpp -o./obj/tizen-debug/src/haxe/io/BytesBuffer.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/ds/StringMap.cpp -o./obj/tizen-debug/src/haxe/ds/StringMap.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/ds/ObjectMap.cpp -o./obj/tizen-debug/src/haxe/ds/ObjectMap.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/ds/IntMap.cpp -o./obj/tizen-debug/src/haxe/ds/IntMap.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/Unserializer.cpp -o./obj/tizen-debug/src/haxe/Unserializer.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/Timer.cpp -o./obj/tizen-debug/src/haxe/Timer.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/Resource.cpp -o./obj/tizen-debug/src/haxe/Resource.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/Log.cpp -o./obj/tizen-debug/src/haxe/Log.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/utils/Endian.cpp -o./obj/tizen-debug/src/flash/utils/Endian.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/utils/CompressionAlgorithm.cpp -o./obj/tizen-debug/src/flash/utils/CompressionAlgorithm.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/utils/ByteArray.cpp -o./obj/tizen-debug/src/flash/utils/ByteArray.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/utils/IDataInput.cpp -o./obj/tizen-debug/src/flash/utils/IDataInput.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/utils/IMemoryRange.cpp -o./obj/tizen-debug/src/openfl/utils/IMemoryRange.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/utils/IDataOutput.cpp -o./obj/tizen-debug/src/flash/utils/IDataOutput.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/ui/Keyboard.cpp -o./obj/tizen-debug/src/flash/ui/Keyboard.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/TextLineMetrics.cpp -o./obj/tizen-debug/src/flash/text/TextLineMetrics.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/TextFormatAlign.cpp -o./obj/tizen-debug/src/flash/text/TextFormatAlign.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/TextFormat.cpp -o./obj/tizen-debug/src/flash/text/TextFormat.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/TextFieldType.cpp -o./obj/tizen-debug/src/flash/text/TextFieldType.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/TextFieldAutoSize.cpp -o./obj/tizen-debug/src/flash/text/TextFieldAutoSize.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/TextField.cpp -o./obj/tizen-debug/src/flash/text/TextField.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/GridFitType.cpp -o./obj/tizen-debug/src/flash/text/GridFitType.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/FontType.cpp -o./obj/tizen-debug/src/flash/text/FontType.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/FontStyle.cpp -o./obj/tizen-debug/src/flash/text/FontStyle.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/Font.cpp -o./obj/tizen-debug/src/flash/text/Font.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/text/AntiAliasType.cpp -o./obj/tizen-debug/src/flash/text/AntiAliasType.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/system/SecurityDomain.cpp -o./obj/tizen-debug/src/flash/system/SecurityDomain.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/system/LoaderContext.cpp -o./obj/tizen-debug/src/flash/system/LoaderContext.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/system/Capabilities.cpp -o./obj/tizen-debug/src/flash/system/Capabilities.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/system/ApplicationDomain.cpp -o./obj/tizen-debug/src/flash/system/ApplicationDomain.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/net/URLVariables.cpp -o./obj/tizen-debug/src/flash/net/URLVariables.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/net/URLRequestMethod.cpp -o./obj/tizen-debug/src/flash/net/URLRequestMethod.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/net/URLRequestHeader.cpp -o./obj/tizen-debug/src/flash/net/URLRequestHeader.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/net/URLRequest.cpp -o./obj/tizen-debug/src/flash/net/URLRequest.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/net/URLLoaderDataFormat.cpp -o./obj/tizen-debug/src/flash/net/URLLoaderDataFormat.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/media/SoundTransform.cpp -o./obj/tizen-debug/src/flash/media/SoundTransform.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/media/SoundLoaderContext.cpp -o./obj/tizen-debug/src/flash/media/SoundLoaderContext.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/media/SoundChannel.cpp -o./obj/tizen-debug/src/flash/media/SoundChannel.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/media/Sound.cpp -o./obj/tizen-debug/src/flash/media/Sound.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/media/ID3Info.cpp -o./obj/tizen-debug/src/flash/media/ID3Info.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/geom/Vector3D.cpp -o./obj/tizen-debug/src/flash/geom/Vector3D.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/geom/Transform.cpp -o./obj/tizen-debug/src/flash/geom/Transform.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/geom/Rectangle.cpp -o./obj/tizen-debug/src/flash/geom/Rectangle.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/geom/Point.cpp -o./obj/tizen-debug/src/flash/geom/Point.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/geom/Matrix.cpp -o./obj/tizen-debug/src/flash/geom/Matrix.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/geom/ColorTransform.cpp -o./obj/tizen-debug/src/flash/geom/ColorTransform.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/filters/DropShadowFilter.cpp -o./obj/tizen-debug/src/flash/filters/DropShadowFilter.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/filters/BlurFilter.cpp -o./obj/tizen-debug/src/flash/filters/BlurFilter.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/filters/BitmapFilter.cpp -o./obj/tizen-debug/src/flash/filters/BitmapFilter.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/UncaughtErrorEvents.cpp -o./obj/tizen-debug/src/flash/events/UncaughtErrorEvents.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/UncaughtErrorEvent.cpp -o./obj/tizen-debug/src/flash/events/UncaughtErrorEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/SampleDataEvent.cpp -o./obj/tizen-debug/src/flash/events/SampleDataEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/ProgressEvent.cpp -o./obj/tizen-debug/src/flash/events/ProgressEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/KeyboardEvent.cpp -o./obj/tizen-debug/src/flash/events/KeyboardEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/IOErrorEvent.cpp -o./obj/tizen-debug/src/flash/events/IOErrorEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/HTTPStatusEvent.cpp -o./obj/tizen-debug/src/flash/events/HTTPStatusEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/FocusEvent.cpp -o./obj/tizen-debug/src/flash/events/FocusEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/EventPhase.cpp -o./obj/tizen-debug/src/flash/events/EventPhase.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/Listener.cpp -o./obj/tizen-debug/src/flash/events/Listener.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/ErrorEvent.cpp -o./obj/tizen-debug/src/flash/events/ErrorEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/TextEvent.cpp -o./obj/tizen-debug/src/flash/events/TextEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/errors/RangeError.cpp -o./obj/tizen-debug/src/flash/errors/RangeError.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/errors/EOFError.cpp -o./obj/tizen-debug/src/flash/errors/EOFError.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/errors/ArgumentError.cpp -o./obj/tizen-debug/src/flash/errors/ArgumentError.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/errors/Error.cpp -o./obj/tizen-debug/src/flash/errors/Error.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/TriangleCulling.cpp -o./obj/tizen-debug/src/flash/display/TriangleCulling.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/StageScaleMode.cpp -o./obj/tizen-debug/src/flash/display/StageScaleMode.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/StageQuality.cpp -o./obj/tizen-debug/src/flash/display/StageQuality.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/StageDisplayState.cpp -o./obj/tizen-debug/src/flash/display/StageDisplayState.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/StageAlign.cpp -o./obj/tizen-debug/src/flash/display/StageAlign.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/TouchInfo.cpp -o./obj/tizen-debug/src/flash/display/TouchInfo.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/Stage.cpp -o./obj/tizen-debug/src/flash/display/Stage.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/TouchEvent.cpp -o./obj/tizen-debug/src/flash/events/TouchEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/MouseEvent.cpp -o./obj/tizen-debug/src/flash/events/MouseEvent.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/Event.cpp -o./obj/tizen-debug/src/flash/events/Event.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/SpreadMethod.cpp -o./obj/tizen-debug/src/flash/display/SpreadMethod.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/Shape.cpp -o./obj/tizen-debug/src/flash/display/Shape.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/PixelSnapping.cpp -o./obj/tizen-debug/src/flash/display/PixelSnapping.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/MovieClip.cpp -o./obj/tizen-debug/src/flash/display/MovieClip.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/LoaderInfo.cpp -o./obj/tizen-debug/src/flash/display/LoaderInfo.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/net/URLLoader.cpp -o./obj/tizen-debug/src/flash/net/URLLoader.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/Loader.cpp -o./obj/tizen-debug/src/flash/display/Loader.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/LineScaleMode.cpp -o./obj/tizen-debug/src/flash/display/LineScaleMode.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/JointStyle.cpp -o./obj/tizen-debug/src/flash/display/JointStyle.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/InterpolationMethod.cpp -o./obj/tizen-debug/src/flash/display/InterpolationMethod.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/IGraphicsData.cpp -o./obj/tizen-debug/src/flash/display/IGraphicsData.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/GraphicsPathWinding.cpp -o./obj/tizen-debug/src/flash/display/GraphicsPathWinding.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/Graphics.cpp -o./obj/tizen-debug/src/flash/display/Graphics.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/GradientType.cpp -o./obj/tizen-debug/src/flash/display/GradientType.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/CapsStyle.cpp -o./obj/tizen-debug/src/flash/display/CapsStyle.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/BlendMode.cpp -o./obj/tizen-debug/src/flash/display/BlendMode.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/OptimizedPerlin.cpp -o./obj/tizen-debug/src/flash/display/OptimizedPerlin.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/BitmapData.cpp -o./obj/tizen-debug/src/flash/display/BitmapData.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/Bitmap.cpp -o./obj/tizen-debug/src/flash/display/Bitmap.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/_Vector/Vector_Impl_.cpp -o./obj/tizen-debug/src/flash/_Vector/Vector_Impl_.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/Memory.cpp -o./obj/tizen-debug/src/flash/Memory.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/cpp/zip/Uncompress.cpp -o./obj/tizen-debug/src/cpp/zip/Uncompress.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/cpp/zip/Flush.cpp -o./obj/tizen-debug/src/cpp/zip/Flush.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/cpp/zip/Compress.cpp -o./obj/tizen-debug/src/cpp/zip/Compress.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/cpp/rtti/FieldNumericIntegerLookup.cpp -o./obj/tizen-debug/src/cpp/rtti/FieldNumericIntegerLookup.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/Type.cpp -o./obj/tizen-debug/src/Type.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/StringTools.cpp -o./obj/tizen-debug/src/StringTools.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/StringBuf.cpp -o./obj/tizen-debug/src/StringBuf.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/Reflect.cpp -o./obj/tizen-debug/src/Reflect.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/IMap.cpp -o./obj/tizen-debug/src/IMap.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/List.cpp -o./obj/tizen-debug/src/List.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/DefaultAssetLibrary.cpp -o./obj/tizen-debug/src/DefaultAssetLibrary.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/openfl/AssetLibrary.cpp -o./obj/tizen-debug/src/openfl/AssetLibrary.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/Date.cpp -o./obj/tizen-debug/src/Date.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/DocumentClass.cpp -o./obj/tizen-debug/src/DocumentClass.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/piratepig/PiratePig.cpp -o./obj/tizen-debug/src/piratepig/PiratePig.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/Sprite.cpp -o./obj/tizen-debug/src/flash/display/Sprite.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/DisplayObjectContainer.cpp -o./obj/tizen-debug/src/flash/display/DisplayObjectContainer.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/InteractiveObject.cpp -o./obj/tizen-debug/src/flash/display/InteractiveObject.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/DisplayObject.cpp -o./obj/tizen-debug/src/flash/display/DisplayObject.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/Lib.cpp -o./obj/tizen-debug/src/flash/Lib.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/Std.cpp -o./obj/tizen-debug/src/Std.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/sys/io/_Process/Stdout.cpp -o./obj/tizen-debug/src/sys/io/_Process/Stdout.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/io/Input.cpp -o./obj/tizen-debug/src/haxe/io/Input.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/io/Bytes.cpp -o./obj/tizen-debug/src/haxe/io/Bytes.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/sys/io/_Process/Stdin.cpp -o./obj/tizen-debug/src/sys/io/_Process/Stdin.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/haxe/io/Output.cpp -o./obj/tizen-debug/src/haxe/io/Output.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/sys/io/Process.cpp -o./obj/tizen-debug/src/sys/io/Process.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/Sys.cpp -o./obj/tizen-debug/src/Sys.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/cpp/Lib.cpp -o./obj/tizen-debug/src/cpp/Lib.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/display/IBitmapDrawable.cpp -o./obj/tizen-debug/src/flash/display/IBitmapDrawable.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/EventDispatcher.cpp -o./obj/tizen-debug/src/flash/events/EventDispatcher.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/flash/events/IEventDispatcher.cpp -o./obj/tizen-debug/src/flash/events/IEventDispatcher.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/ApplicationMain.cpp -o./obj/tizen-debug/src/ApplicationMain.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/__boot__.cpp -o./obj/tizen-debug/src/__boot__.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/__files__.cpp -o./obj/tizen-debug/src/__files__.o
arm-linux-gnueabi-g++ -Iinclude -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/haxe ./src/__resources__.cpp -o./obj/tizen-debug/src/__resources__.o
arm-linux-gnueabi-g++ -Iinclude -DHX_DECLARE_MAIN -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti ./src/__main__.cpp -o./obj/tizen-debug/src/__main__.o
Creating ./obj/tizen-debug/__pch/runtime/hxcpp.h.gch...
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -frtti -o ./obj/tizen-debug/__pch/runtime/hxcpp.h.gch /Users/joshua/Development/Haxe/hxlibc/include/hxcpp.h
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Anon.cpp -o./obj/tizen-debug/src/hx/Anon.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Boot.cpp -o./obj/tizen-debug/src/hx/Boot.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/CFFI.cpp -o./obj/tizen-debug/src/hx/CFFI.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Date.cpp -o./obj/tizen-debug/src/hx/Date.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/GC.cpp -o./obj/tizen-debug/src/hx/GC.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/GCInternal.cpp -o./obj/tizen-debug/src/hx/GCInternal.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Hash.cpp -o./obj/tizen-debug/src/hx/Hash.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Interface.cpp -o./obj/tizen-debug/src/hx/Interface.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Lib.cpp -o./obj/tizen-debug/src/hx/Lib.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Object.cpp -o./obj/tizen-debug/src/hx/Object.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/StdLibs.cpp -o./obj/tizen-debug/src/hx/StdLibs.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Debug.cpp -o./obj/tizen-debug/src/hx/Debug.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/hx/Thread.cpp -o./obj/tizen-debug/src/hx/Thread.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/Array.cpp -o./obj/tizen-debug/src/Array.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/Class.cpp -o./obj/tizen-debug/src/Class.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/Dynamic.cpp -o./obj/tizen-debug/src/Dynamic.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/Enum.cpp -o./obj/tizen-debug/src/Enum.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/Math.cpp -o./obj/tizen-debug/src/Math.o
arm-linux-gnueabi-g++ -D_CRT_SECURE_NO_DEPRECATE -DHX_UNDEFINE_H -c -g -I/Users/joshua/Development/Haxe/hxlibc/include -I/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/include -DTIZEN -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -DHXCPP_DEBUG -DHXCPP_VISIT_ALLOCS -fvisibility=hidden -fdollars-in-identifiers -fpic -fPIC --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -x c++ -frtti -I./obj/tizen-debug/__pch/runtime /Users/joshua/Development/Haxe/hxlibc/src/String.cpp -o./obj/tizen-debug/src/String.o
arm-linux-gnueabi-g++ -oApplicationMain-debug.exe -g -pie -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mtune=cortex-a8 -Xlinker --as-needed -Xlinker -rpath=/opt/usr/apps/AAfw97S4em/lib -Xlinker -rpath=/home/developer/sdk_tools/lib --sysroot=/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native -L/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/lib -L/Users/joshua/Development/Tizen/tizen-sdk/platforms/tizen2.2/rootstraps/tizen-device-2.2.native/usr/lib/osp @all_objs -lpthread -losp-uifw -losp-appfw -losp-image -losp-json -losp-ime -losp-net -lpthread -losp-content -losp-locations -losp-telephony -losp-uix -losp-media -losp-uix -losp-media -losp-messaging -losp-web -losp-social -losp-wifi -losp-bluetooth -losp-nfc -losp-face -losp-secure-element -losp-speech-tts -losp-speech-stt -losp-shell -losp-shell-core -lxml2 -lalut -lopenal -ldl
Copying files...
rm -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk"
mkdir -p "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/shared"
rm -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/AAfw97S4em-1.0.0-arm.tpk"
rm -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/AAfw97S4em-1.0.0-arm-debug.zip"
mkdir -p "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/data"
cp -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/../shared/res" "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/shared/res"
mkdir -p "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/shared/data"
mkdir -p "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/shared/trusted"
cp -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/../lib" "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/lib"
cp -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/../res" "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/res"
mkdir -p "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/setting"
cp -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/../bin" "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/bin"
cp -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/PiratePig.exe" "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/bin/PiratePig.exe"
mkdir -p "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/info"
cp -rf "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/../manifest.xml" "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk/info/manifest.xml"
Signing...
"/Users/joshua/Development/Tizen/tizen-sdk/tools/smart-build-interface/../ide/bin/native-signing" "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk" " " "/Users/joshua/Development/Tizen/tizen-sdk-data/keystore/author/author" "****" " " "****" " " " " "****" " " " "
The message is ""
Zipping...
cd "/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/.tpk" ; zip -rv "../AAfw97S4em-1.0.0-arm.tpk" . 
  adding: .manifest.tmp    (in=1675) (out=1064) (deflated 36%)
  adding: author-signature.xml	(in=8089) (out=3055) (deflated 62%)
  adding: bin/	(in=0) (out=0) (stored 0%)
  adding: bin/PiratePig .	(in=19568407) (out=5459500) (deflated 72%)
  adding: data/	(in=0) (out=0) (stored 0%)
  adding: info/	(in=0) (out=0) (stored 0%)
  adding: info/manifest.xml	(in=762) (out=414) (deflated 46%)
  adding: lib/	(in=0) (out=0) (stored 0%)
  adding: lib/nme.so 	(in=8506620) (out=2463158) (deflated 71%)
  adding: lib/regexp.so 	(in=155748) (out=55598) (deflated 64%)
  adding: lib/std.so 	(in=76376) (out=27721) (deflated 64%)
  adding: lib/zlib.so 	(in=88452) (out=46264) (deflated 48%)
  adding: res/	(in=0) (out=0) (stored 0%)
  adding: res/fonts/	(in=0) (out=0) (stored 0%)
  adding: res/fonts/FreebooterUpdated.ttf 	(in=102764) (out=51902) (deflated 49%)
  adding: res/images/	(in=0) (out=0) (stored 0%)
  adding: res/images/background_tile.png	(in=16510) (out=1641) (deflated 90%)
  adding: res/images/center_bottom.png 	(in=157449) (out=156539) (deflated 1%)
  adding: res/images/game_bear.png	(in=1249) (out=1249) (stored 0%)
  adding: res/images/game_bunny_02.png	(in=1062) (out=1062) (stored 0%)
  adding: res/images/game_carrot.png	(in=1310) (out=1310) (stored 0%)
  adding: res/images/game_lemon.png	(in=1499) (out=1499) (stored 0%)
  adding: res/images/game_panda.png	(in=969) (out=969) (stored 0%)
  adding: res/images/game_piratePig.png	(in=1737) (out=1737) (stored 0%)
  adding: res/images/logo.png	(in=19199) (out=18879) (deflated 2%)
  adding: res/manifest	(in=743) (out=296) (deflated 60%)
  adding: res/sounds/	(in=0) (out=0) (stored 0%)
  adding: res/sounds/3.wav	(in=14432) (out=7053) (deflated 51%)
  adding: res/sounds/4.wav 	(in=135984) (out=86332) (deflated 37%)
  adding: res/sounds/5.wav 	(in=441044) (out=139059) (deflated 68%)
  adding: res/sounds/theme.ogg 	(in=167574) (out=163697) (deflated 2%)
  adding: setting/	(in=0) (out=0) (stored 0%)
  adding: shared/	(in=0) (out=0) (stored 0%)
  adding: shared/data/	(in=0) (out=0) (stored 0%)
  adding: shared/res/	(in=0) (out=0) (stored 0%)
  adding: shared/res/screen-density-xhigh/	(in=0) (out=0) (stored 0%)
  adding: shared/res/screen-density-xhigh/icon.png	(in=3737) (out=3737) (stored 0%)
  adding: shared/trusted/	(in=0) (out=0) (stored 0%)
  adding: signature1.xml	(in=8109) (out=2812) (deflated 65%)
total bytes=29481500, compressed=8696547 -> 71% savings
Packaging completed... OK
PLATFORM_NAME	: 
PLATFORM_VER	: Tizen 2.2
ARCHITECTURE	: armel
TOOLCHAIN	: GCC-4.5
PROJECT_TYPE	: app
PROJECT_NAME	: PiratePig
APPLICATION_ID	: AAfw97S4em
Info: Target already exists. [tizen-device-2.2.native_gcc45.armel.cpp.app]
cp: /Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/PiratePig.exe: No such file or directory
pushed: /Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/AAfw97S4em-1.0.0-arm.tpk -> /opt/usr/apps/tmp/AAfw97S4em-1.0.0-arm.tpk 
1 file(s) pushed. 0 file(s) skipped.
/Users/joshua/Projects/Samples/Test/PiratePig/Export/tizen/bin/CommandLineBuild/AAfw97S4em-1.0.0-arm.tpk   3396 KB/s (8702851 bytes in 2.502s)
path is /opt/usr/apps/tmp/AAfw97S4em-1.0.0-arm.tpk
__return_cb req_id[1] pkg_type[tpk] pkgid[AAfw97S4em] key[start] val[install]
__return_cb req_id[1] pkg_type[tpk] pkgid[AAfw97S4em] key[install_percent] val[0]
__return_cb req_id[1] pkg_type[tpk] pkgid[AAfw97S4em] key[install_percent] val[60]
__return_cb req_id[1] pkg_type[tpk] pkgid[AAfw97S4em] key[install_percent] val[100]
__return_cb req_id[1] pkg_type[tpk] pkgid[AAfw97S4em] key[end] val[ok]
spend time for pkgcmd is [13034]ms

To launch the application, run native-run with -p <pkg_name>.
And to debug the application, run native-debug with -p <pkg_name>.
... successfully launched

Our application doesn't run at all, and so far, no real sign of how to determine the problem :(

Joshua Granick

Progress!

We were not using "-pie" before. I believe it was this flag that removed the requirement for an "int main" entry point. Even though our tests with the Tizen sample applications were successful using an OspMain to call main, removing our main function now has fprintf output writing to /tmp.