When would you use -static-link-runtime-shared-libraries?

Is there a reason why you would not set the value -static-link-runtime-shared-librariesto true when compiling an Actionscript project with mxmlc?

+3
source share
1 answer

If you have several applications for one project creating a structure accessible as RSL, this allows other applications to load it from the cache (it was loaded there by the first application) and save bandwidth and time. If you set the static binding to true, each application will contain infrastructure classes that increase your file sizes.

.swf, RSL - .swf, , .swcs.

0

All Articles