2012-07-21 93 views
0

我只是試圖從Opa文檔構建基本的hello_chat應用程序。 如果我嘗試使用命令行構建:嘗試構建Opa應用程序時出錯

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: 

如果我嘗試從崇高文本2(使用OPA-一個構建工具)來構建它把一個名爲opa_build的文件和兩個文件夾'_build'和'opa_build_depends'。如果我嘗試運行opa_build文件,它說我在使用安裝程序時使用的Windows 32版本不是64位。但我正在使用64位版本的Windows。

回答

0

事實上,在上一個版本中存在限制。暫時嘗試在源目錄內直接編譯:

opa hello_chat.opa 
相關問題