FlashCC is the second iteration of the Alchemy tool which allows C++ code to be compiled for execution in Flash Player (Actionscript Virtual Machine)

learn more… | top users | synonyms

0
votes
1answer
19 views

FlasCC open-source download?

FlasCC uses several customized GPL libraries, such as SWIG. Aren't they supposed to provide the source for these libraries? Where can I download it?
0
votes
0answers
34 views

Failed to create Console with embed VFS due to “Call to a possibly undefined method”

First I've created an embedded Virtual File System, as described here. It generates this AS code: package C_Run {} package com.adobe.flascc.vfs { import com.adobe.flascc.vfs.*; import ...
0
votes
0answers
26 views

Is there any IDE for compiling/debugging FlasCC apps?

I want to use FlasCC for a large project, but I have no experience with GDB. Is there an IDE for FlasCC out there so I can do the compiling/debugging things (mostly debugging)? Or could anyone tell me ...
0
votes
1answer
91 views

C++ program compiled with FlasCC with -O4 (LTO) hangs on virtual call

I have a problem with LTO optimization in FlasCC. When compiled with -O1 resulting swf runs just fine. But with -O4 it first runs OK, but then suddenly hangs on specific virtual function call for ...
0
votes
2answers
82 views

Can FlasCC and Haxe be used together?

This is a rookie question as I'm very new to Haxe and have no experience with FlasCC (the C compiler for Flash). Is it possible to use FlasCC and Haxe together, to bring the performance improvements ...
3
votes
1answer
155 views

How to workaround huge pthread memory cost in FlasCC?

We've got quite a massive codebase compiling and starting to run in FlasCC. When you just open the .swf, player's memory usage is ~300MB. It is more or less fine, since it seems like there's still ...
1
vote
1answer
160 views

Using decompression library in AS3 via FlasCC

I have an AS3 AIR project in which I need to decompress files using a specific decompression method. Apparently the code for this is found here, in the contrib/blast directory of the zlib ...
-1
votes
1answer
107 views

Stage3D and pthreads

So I downloaded flascc, and messed around with the sample. sample 09 (threads) and sample 12 (stage3D) worked well by themselves, but when I tried to run threads in Stage3D sample, they were never ...
0
votes
1answer
129 views

What versions of C and C++ standards does FlasCC support?

I heard of FlasCC which is a C/C++ compiler targets AVM2. And also I heard it is based on an older version of GCC. (4.2??) What kind/versions of C and C++ standards are supported on FlasCC?
0
votes
0answers
87 views

Debugging Flash SWF panel

Does anyone think it could be possible to create a custom debugger for swf files using a socket, able to support breaking points and step through code functionality? I know there are swf debugger's ...
1
vote
1answer
157 views

FlasCC: interop between Vector.<Number> and double[]

Assume that I am new to AS3 and FlasCC and try to port some legacy C++ code to Flash. What I have is some number-crunching routine that takes an array of type double (the array is of fixed size). The ...
4
votes
1answer
332 views

From C++ to Actionscript via FLASCC

I'm hoping to get some feedback from anyone who is familiar with BOTH C++ AND Actionscript. I am not a C++ coder unfortunately. I am developing Kinect applications using the AIRKinect framework. ...
3
votes
2answers
417 views

How to pass ByteArray to C code using FlasCC

I want to pass ByteArray from ActionScript to C function. basically I want do something like this: void init() __attribute__((used,annotate("as3sig:public function init(byteData: ByteArray):int"), ...
1
vote
1answer
175 views

as3 conditional compiling with flascc

I had as3 project with custom flex-config.xml and conditional compiling directives for mxmlc like this: <define append="true"> <name>CONFIG::DEBUG</name> ...
2
votes
1answer
292 views

Adobe Alchemy compiled SWC - not sure how to compile library for FlasCC

I'm trying to get game-music-emu-flash working with FlasCC. It uses the C/C++ Game_Music_Emu library and was originally compiled with Alchemy, but I want to see if there is a performance increase with ...
0
votes
2answers
163 views

FlasCC sample 01 no output when add -O4 flag

I have only add -O4 -flto-api=exports.txt to Makefile script in Flascc SDK 1.0 sample 01_helloworld project this is final Makefile content: "$(FLASCC)/usr/bin/gcc" $(BASE_CFLAGS) hello.c -O4 ...
0
votes
1answer
335 views

How to compile ffmpeg with the new Flascc compiler?

I have tried to compile ffmpeg with the new flascc compiler with the following parameters ( I set only h263 ability as a test): PATH=/cygdrive/c/download/flascc/sdk/usr/bin:$PATH ./configure ...
1
vote
3answers
278 views

Increase Flash script execution time (FlasCC)

I am using FlasCC. My app works fine but takes long to load. I get a message that it has exceeded 15 seconds (Error #1502). How can I make this time longer?
2
votes
2answers
470 views

FlasCC SWC within Mobile AIR Project

I am writing a barcode scanner for iOS and Android using Flex Mobile and ZXing. I have optimized ZXing as much as I can, but it is still too slow to use for continual scanning on some older devices. I ...
2
votes
1answer
1k views

Hello World in FlasCC - Getting FlasCC running for the first time in WIndows

I am reading the README.html instructions. It says: Extract the contents of the ZIP file onto your hard drive. This can be extracted to anywhere on your hard drive, but this readme will assume it ...