0

So I try to compile ffmpeg as I described here after this patch I started seeing .l.bc files but no .swc files. So how to use alchemy completion suite to turn .l.bc into .swc?

Community
  • 1
  • 1
Rella
  • 65,003
  • 109
  • 363
  • 636

1 Answers1

1

Did you remember to use the -swc option?

gcc myMainClass.c -O3 -Wall -swc -o mySwcFile.swc

Are you sure there are no c++ libraries it depends on? Should you be using g++?

g++ myMainClass.c -O3 -Wall -swc -o mySwcFile.swc

Are you using your own ashacks (AS3.h) enabled main class (glue class)? You can't just throw any c/c++ class into alchemy and expect it to work, you have to define an interface between the c/c++ code and flash.

Is the gcc/g++ throwing any errors in the output? If there is just one error, a swc will not be created.

Are you sure you're running with alc-on?

Sorry if these troubleshooting steps are too basic, all I can think of.

Flassari
  • 1,149
  • 8
  • 13