我在Win7设置中获得了环境变量,以便我可以通过提示编译.as文件。
但是它显示了一些关于没有FactoryClass的警告,所以我无法使用共享库进行编译。如何使用导入的类和库编译文件?
我正在尝试使用mxmlc file.as
由于
答案 0 :(得分:5)
Warning: This compilation unit did not have a factoryClass specified in Frame metadata to load the configured runtime shared libraries. To compile without runtime shared libraries either set the -static-link-runtime-shared-libraries option to true or remove the -runtime-shared-libraries option.
在保存Flex 4文件的“frameworks”目录下找到flex-config.xml文件,并将以下内容从“false”更改为“true”:
<static-link-runtime-shared-libraries>false</static-link-runtime-shared-libraries>
to -->
<static-link-runtime-shared-libraries>true</static-link-runtime-shared-libraries>
我在这里的Linux机器上,但这也应该在Windows平台上实现。
干杯!
答案 1 :(得分:1)
您可以将它添加到编译时选项中,例如;
mxmlc -static-link-runtime-shared-libraries=true source.as