我只是想从Opa文档构建基本的hello_chat应用程序。
如果我尝试使用以下命令从命令行进行构建:

opa ..filepath\hello_chat.opa

我说错了
Warning inclusions.directory_does_not_exist
Error reading directory: C:\resources
Error encountered: No such file or directory.
Warning inclusions.directory_empty
Directory C:\resources is empty.
Error
An internal error has occurred during the pass ServerJavascriptCompilation
Uncaught Exception:
  Sys_error("hello_chat_depends/load.js: No such file or directory")
Backtrace:

如果我尝试使用Sublime文本2(使用Opa-one构建工具)进行构建,则会放置一个名为opa_build的文件以及两个文件夹“_build”和“opa_build_depends”。如果我尝试运行opa_build文件,它表示我使用的Windows 32版本不是64位,而是安装程序使用的版本错误。但是我正在使用Windows的64位版本。

最佳答案

实际上,最新版本存在局限性。目前,请尝试直接在您的源目录中进行编译:

opa hello_chat.opa

关于compiler-errors - 尝试构建Opa应用程序时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11592092/

10-11 15:25