我已经为MacOSX(碳)下载了eclipse 3.4(java版本).我曾尝试"更新"到erlide,但看到很多(复制)选项(许多erlide,该说的选项只针对ERL SDK更新'等),有时我试图访问时得到的403错误,HTTP:// erlide .org/update和http://erlide.sourceforge.net/update.
最后,当我安装了一些选项时,我得到的错误如下:
Loading of /Users/kevindtimm/Documents/eclipse-java-ganymede-SR2-macosx-carbon/eclipse/plugins/org.erlide.kernel.common_0.8.1.201005250801/ebin/erlide_kernel_common.beam failed: badfile
(hello_world@ktmac)1>
=ERROR REPORT==== 24-Nov-2010::19:17:32 ===
beam/beam_load.c(1768): Error loading function erlide_kernel_common:monitor/0: op put_string u u x:
please re-compile this module with an R14B compiler
Run Code Online (Sandbox Code Playgroud)
或者,当我完成不同的erlide安装时,我在控制台中没有得到任何响应:
hello:hello().
Run Code Online (Sandbox Code Playgroud)
有没有人对如何加载这个插件以及我应该安装哪些项目有很好的参考?
-module(hello).
-export([hello/0]).
hello() -> io:write("Hello World\n").
Run Code Online (Sandbox Code Playgroud)
[编辑]
我按照下面的要求安装了eclipse 3.6(c ++),下面的代码仍然找不到hello:hello().
%%file_comment
-module(hello).
%%
%% Include files
%%
%%
%% Exported Functions
%%
-export([hello/0]).
%%
%% API Functions
%%
%%
%% Local Functions
%%
hello() -> io:write("Hello World\n").
Run Code Online (Sandbox Code Playgroud)
[/编辑]