Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这个问题专门针对在 FlashDevelop 中从 Haxe 创建 SWC(而不是从 AS3 代码)。
是否有编译器参数来指定一些不在 SWC 中编译的类?如果是这样,是否有可能在编译其他所有内容时摆脱“Main”、“Lib”等(默认情况下嵌入在 SWC 中的最常见的类)?
对于 Nape,我将 swcs 编译为:
haxe --macro "include('nape')" --macro "include('zpp_nape')" ...
没有-main标志,这将构建一个 .swc,其中仅包含nape和zpp_nape包中的类。
-main
nape
zpp_nape
这仍将包括 haxe 标准库,但到目前为止还没有人抱怨。